SecurityTokenRequirement.RequireCryptographicToken Property

Definition

Gets or sets a value that indicates whether the security token must be capable of performing cryptographic operations, such as encryption.

public:
 property bool RequireCryptographicToken { bool get(); void set(bool value); };
public bool RequireCryptographicToken { get; set; }
member this.RequireCryptographicToken : bool with get, set
Public Property RequireCryptographicToken As Boolean

Property Value

true if the security token must be capable of performing cryptographic operations; otherwise, false. The default is false.

Remarks

Some security tokens, such as the UserNameSecurityToken, are not secure enough to perform cryptographic operations and should only be used for authentication.

The value of the RequireCryptographicToken property can also be accessed by getting the Properties property, which is a collection of property values. The value of the RequireCryptographicToken property is stored at the index matching the value of the RequireCryptographicTokenProperty property.

Applies to