RequestSecurityToken.ActAs Property
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.
Gets or sets the security token for the identity that the requestor is attempting to act as.
public:
property System::IdentityModel::Tokens::SecurityTokenElement ^ ActAs { System::IdentityModel::Tokens::SecurityTokenElement ^ get(); void set(System::IdentityModel::Tokens::SecurityTokenElement ^ value); };
public System.IdentityModel.Tokens.SecurityTokenElement ActAs { get; set; }
member this.ActAs : System.IdentityModel.Tokens.SecurityTokenElement with get, set
Public Property ActAs As SecurityTokenElement
Property Value
A SecurityTokenElement that represents the identity the requestor is attempting to act as. Can be null
.
Remarks
Represents the contents of the wst:ActAs element. This optional element supports delegation scenarios and indicates that the requestor is making the request to act as another identity. This element is introduced in WS-Trust 1.4. This property is null
in requests that don't involve delegation.