SamlSecurityTokenHandler.DenormalizeAuthenticationType(String) Method

Definition

Returns the SAML11 authentication method identifier that matches the specified normalized value for a SAML authentication method.

protected:
 virtual System::String ^ DenormalizeAuthenticationType(System::String ^ normalizedAuthenticationType);
protected virtual string DenormalizeAuthenticationType (string normalizedAuthenticationType);
abstract member DenormalizeAuthenticationType : string -> string
override this.DenormalizeAuthenticationType : string -> string
Protected Overridable Function DenormalizeAuthenticationType (normalizedAuthenticationType As String) As String

Parameters

normalizedAuthenticationType
String

The normalized value. One of the AuthenticationMethods values.

Returns

The SAML11 authentication method identifier (URI) that matches the specified normalized identifier. If no matching SAML11 authentication method is found, the normalizedAuthenticationType URI is returned unaltered.

Remarks

The DenormalizeAuthenticationType method returns the SAML11 authentication method identifier that matches the specified normalized URI. For example, if X509 is specified for normalizedAuthenticationType, the following URI is returned: urn:oasis:names:tc:SAML:1.0:am:X509-PKI. If a mapping does not exist for normalizedAuthenticationType, it is returned unaltered.

Applies to