SecurityTokenRequirement Class
Specifies security token requirements.
Assembly: System.IdentityModel (in System.IdentityModel.dll)
System.IdentityModel.Selectors::SecurityTokenRequirement
System.ServiceModel.Security.Tokens::ServiceModelSecurityTokenRequirement
| Name | Description | |
|---|---|---|
![]() | SecurityTokenRequirement() | Initializes a new instance of the SecurityTokenRequirement class. |
| Name | Description | |
|---|---|---|
![]() ![]() | IsOptionalTokenProperty | Gets a value of the token property if it is optional. |
![]() | KeySize | Gets or sets the required size of the key associated with a security token. |
![]() ![]() | KeySizeProperty | Gets a value that specifies the name of the index in the Properties collection for the KeySize property. |
![]() | KeyType | Gets or sets the type of key (asymmetric or symmetric) associated with a security token. |
![]() ![]() | KeyTypeProperty | Gets a value that specifies the name of the index in the Properties collection for the KeyType property. |
![]() | KeyUsage | Gets or sets a value that specifies how the key associated with a security token can be used. |
![]() ![]() | KeyUsageProperty | Gets a value that specifies the name of the index in the Properties collection for the KeyUsage property. |
![]() ![]() | PeerAuthenticationMode | Gets the name of the index in the Properties collection for a property that specifies the peer authentication method. |
![]() | Properties | Gets a collection of the non-static properties for the current SecurityTokenRequirement instance. |
![]() | RequireCryptographicToken | Gets or sets a value that indicates whether the security token must be capable of performing cryptographic operations, such as encryption. |
![]() ![]() | RequireCryptographicTokenProperty | Gets the name of the index in the Properties collection for the RequireCryptographicToken property. |
![]() | TokenType | Gets or sets the required security token type. |
![]() ![]() | TokenTypeProperty | Gets a value that specifies the name of the index in the Properties collection for the TokenType property. |
| Name | Description | |
|---|---|---|
![]() | Equals(Object^) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | Finalize() | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.(Inherited from Object.) |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetProperty<TValue>(String^) | Gets the specified property for the current SecurityTokenRequirement instance. |
![]() | GetType() | |
![]() | MemberwiseClone() | |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
![]() | TryGetProperty<TValue>(String^, TValue%) | Gets the specified property for the current SecurityTokenRequirement instance. |
Application code typically does not need to use the SecurityTokenRequirement class, unless a custom security token, security token manager, security token provider, or security token authenticator are created. The SecurityTokenRequirement class is used by a security token manager to specify what is required of a security token, such as the key size, key type, and how the key can be used. When a security token can be identified that matches the specified criteria, a SecurityTokenProvider and SecurityTokenAuthenticator can be obtained to provide security tokens for outgoing SOAP messages and to authenticate security tokens for incoming SOAP messages, respectively. For example, the default security token manager for outgoing SOAP messages has the CreateSecurityTokenProvider(SecurityTokenRequirement^) method that takes a SecurityTokenRequirement parameter that can be called to obtain a security token provider that matches the criteria specified in the security token requirement.
Available since 3.0
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.



