KerberosReceiverSecurityToken Constructors

Definition

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

request
Byte[]

An array of Byte that contains a Kerberos ticket.

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

request
Byte[]

An array of Byte that contains the Kerberos ticket.

id
String

A unique identifier of the security token. Sets the value of the Id property.

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.

Applies to