JwtBearerAuthenticationOptions.IssuerSecurityTokenProviders Property
Gets or sets the issuer security token providers which provide the signing keys a JWT signature is checked against.
Namespace: Microsoft.Owin.Security.Jwt
Assembly: Microsoft.Owin.Security.Jwt (in Microsoft.Owin.Security.Jwt.dll)
Syntax
public IEnumerable<IIssuerSecurityTokenProvider> IssuerSecurityTokenProviders { get; set; }
public:
property IEnumerable<IIssuerSecurityTokenProvider^>^ IssuerSecurityTokenProviders {
IEnumerable<IIssuerSecurityTokenProvider^>^ get();
void set(IEnumerable<IIssuerSecurityTokenProvider^>^ value);
}
member IssuerSecurityTokenProviders : IEnumerable<IIssuerSecurityTokenProvider> with get, set
Public Property IssuerSecurityTokenProviders As IEnumerable(Of IIssuerSecurityTokenProvider)
Property Value
Type: System.Collections.Generic.IEnumerable<IIssuerSecurityTokenProvider>
The issuer security token providers.
See Also
JwtBearerAuthenticationOptions Class
Microsoft.Owin.Security.Jwt Namespace
Return to top