IssuingAuthority.Issuers Property

Gets the [ISet] containing the Issuers associated with this IssuingAuthority.

Namespace:  System.IdentityModel.Tokens
Assembly:  System.IdentityModel.Tokens.ValidatingIssuerNameRegistry (in System.IdentityModel.Tokens.ValidatingIssuerNameRegistry.dll)

Syntax

'Declaration
Public Overridable ReadOnly Property Issuers As ISet(Of String)
public virtual ISet<string> Issuers { get; }
public:
virtual property ISet<String^>^ Issuers {
    ISet<String^>^ get ();
}
abstract Issuers : ISet<string> with get 
override Issuers : ISet<string> with get
function get Issuers () : ISet<String>

Property Value

Type: System.Collections.Generic.ISet<String>
Returns ISet<T>.

Remarks

Warning

If you choose to override this property and return your own implementation of [ISet], please be aware of the need to use the appropriate comparison methodology. This will have an effect on the return value of [ISet.Contains]. Issuers are normally case sensitive. Comparing issuers in a case insensitive way could lead to security issues.

.NET Framework Security

See Also

Reference

IssuingAuthority Class

System.IdentityModel.Tokens Namespace