RequestClaim Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Represents a single requested claim in a security token request (RST).
public ref class RequestClaim
public class RequestClaim
type RequestClaim = class
Public Class RequestClaim
- Inheritance
-
RequestClaim
Remarks
Represents a single claim inside a wst:Claims element in a wst:RequestSecurityToken message. The entire contents of the wst:Claims element is represented by a RequestClaimCollection which is a collection of RequestClaim objects. The contents of the wst:Claims element is accessed through the RequestSecurityToken.Claims property.
A RequestClaim object represents a request for a claim, identified by its claim type (the ClaimType property), to be present in the security token issued by the STS. The IsOptional property indicates whether the claim is required in the issued token.
For more information about the element that this class represents, see the version of the WS-Trust specification that applies to your scenario.
Constructors
RequestClaim(String, Boolean, String) |
Initializes a new instance of the RequestClaim class with the specified claim type, claim value, and a value that indicates whether the claim is optional. |
RequestClaim(String, Boolean) |
Initializes a new instance of the RequestClaim class with the specified claim type and a value that indicates whether the claim is optional. |
RequestClaim(String) |
Initializes a new instance of the RequestClaim class with the specified claim type. |
Properties
ClaimType |
Gets the type of the requested claim. |
IsOptional |
Gets or sets a value that indicates whether the request claim is optional in the response. |
Value |
Gets or sets the requested claim value. |
Methods
Equals(Object) |
Determines whether the specified object is equal to the current object. (Inherited from Object) |
GetHashCode() |
Serves as the default hash function. (Inherited from Object) |
GetType() |
Gets the Type of the current instance. (Inherited from Object) |
MemberwiseClone() |
Creates a shallow copy of the current Object. (Inherited from Object) |
ToString() |
Returns a string that represents the current object. (Inherited from Object) |