UCosmic.Saml.ComponentSpaceSaml2Response.GetAttributeValueByName C# (CSharp) Method

GetAttributeValueByName() protected method

protected GetAttributeValueByName ( SamlAttributeName name ) : string
name SamlAttributeName
return string
        protected override string GetAttributeValueByName(SamlAttributeName name)
        {
            var attributeValues = GetAttributeValuesByName(name);
            return attributeValues != null
                ? attributeValues.FirstOrDefault()
                : null;
        }