KerberosReceiverSecurityToken Constructors
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.
Initializes a new instance of the KerberosReceiverSecurityToken class.
Overloads
KerberosReceiverSecurityToken(Byte[]) |
Initializes a new instance of the KerberosReceiverSecurityToken class using the specified Kerberos ticket. |
KerberosReceiverSecurityToken(Byte[], String) |
Initializes a new instance of the KerberosReceiverSecurityToken class using the specified Kerberos ticket and unique identifier. |
KerberosReceiverSecurityToken(Byte[], String, String) |
Creates a new instance of KerberosReceiverSecurityToken. |
KerberosReceiverSecurityToken(Byte[])
Initializes a new instance of the KerberosReceiverSecurityToken class using the specified Kerberos ticket.
public:
KerberosReceiverSecurityToken(cli::array <System::Byte> ^ request);
public KerberosReceiverSecurityToken (byte[] request);
new System.IdentityModel.Tokens.KerberosReceiverSecurityToken : byte[] -> System.IdentityModel.Tokens.KerberosReceiverSecurityToken
Public Sub New (request As Byte())
Parameters
Remarks
For the request
parameter, pass the Kerberos ticket that is the returned from the GetRequest method.
This constructor generates a unique identifier of the security token and sets that value to the Id property.
Applies to
KerberosReceiverSecurityToken(Byte[], String)
Initializes a new instance of the KerberosReceiverSecurityToken class using the specified Kerberos ticket and unique identifier.
public:
KerberosReceiverSecurityToken(cli::array <System::Byte> ^ request, System::String ^ id);
public KerberosReceiverSecurityToken (byte[] request, string id);
new System.IdentityModel.Tokens.KerberosReceiverSecurityToken : byte[] * string -> System.IdentityModel.Tokens.KerberosReceiverSecurityToken
Public Sub New (request As Byte(), id As String)
Parameters
Applies to
KerberosReceiverSecurityToken(Byte[], String, String)
Creates a new instance of KerberosReceiverSecurityToken.
public:
KerberosReceiverSecurityToken(cli::array <System::Byte> ^ request, System::String ^ id, System::String ^ valueTypeUri);
public KerberosReceiverSecurityToken (byte[] request, string id, string valueTypeUri);
new System.IdentityModel.Tokens.KerberosReceiverSecurityToken : byte[] * string * string -> System.IdentityModel.Tokens.KerberosReceiverSecurityToken
Public Sub New (request As Byte(), id As String, valueTypeUri As String)
Parameters
- request
- Byte[]
An array of bytes that contains the Kerberos ticket.
- id
- String
A unique identifier for the security token.
- valueTypeUri
- String
The URI that describes the value type.