RequestClaim Class
Represents a single requested claim in a security token request (RST).
Assembly: System.IdentityModel (in System.IdentityModel.dll)
| Name | Description | |
|---|---|---|
![]() | RequestClaim(String^) | Initializes a new instance of the RequestClaim class with the specified claim type. |
![]() | 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^, 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. |
| Name | Description | |
|---|---|---|
![]() | 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. |
| 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.) |
![]() | GetType() | |
![]() | MemberwiseClone() | |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
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 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.
Available since 4.5
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.


