IdentityConfigurationElement.IssuerTokenResolver Property

Definition

Gets or sets the issuer token resolver that is associated with this identity configuration element.

public:
 property System::IdentityModel::Configuration::CustomTypeElement ^ IssuerTokenResolver { System::IdentityModel::Configuration::CustomTypeElement ^ get(); void set(System::IdentityModel::Configuration::CustomTypeElement ^ value); };
[System.Configuration.ConfigurationProperty("issuerTokenResolver", IsRequired=false)]
public System.IdentityModel.Configuration.CustomTypeElement IssuerTokenResolver { get; set; }
[<System.Configuration.ConfigurationProperty("issuerTokenResolver", IsRequired=false)>]
member this.IssuerTokenResolver : System.IdentityModel.Configuration.CustomTypeElement with get, set
Public Property IssuerTokenResolver As CustomTypeElement

Property Value

A custom type element that specifies the Type of the issuer token resolver. The type must derive from SecurityTokenResolver.

Attributes

Remarks

Corresponds to the <issuerTokenResolver> element that is configured under the <identityConfiguration> element. The <issuerTokenResolver> element registers an issuer token resolver. This can be used to resolve Issuer key identifier clauses while deserializing a SAML token.

Applies to

See also