Sdílet prostřednictvím


BinarySecretSecurityToken Konstruktory

Definice

Inicializuje novou instanci BinarySecretSecurityToken třídy.

Přetížení

BinarySecretSecurityToken(Byte[])

Inicializuje novou instanci BinarySecretSecurityToken třídy.

BinarySecretSecurityToken(Int32)

Inicializuje novou instanci BinarySecretSecurityToken třídy.

BinarySecretSecurityToken(String, Byte[])

Inicializuje novou instanci BinarySecretSecurityToken třídy.

BinarySecretSecurityToken(String, Int32)

Inicializuje novou instanci BinarySecretSecurityToken třídy.

BinarySecretSecurityToken(String, Byte[], Boolean)

Inicializuje novou instanci BinarySecretSecurityToken třídy.

BinarySecretSecurityToken(String, Int32, Boolean)

Inicializuje novou instanci BinarySecretSecurityToken třídy.

BinarySecretSecurityToken(Byte[])

Inicializuje novou instanci BinarySecretSecurityToken třídy.

public:
 BinarySecretSecurityToken(cli::array <System::Byte> ^ key);
public BinarySecretSecurityToken (byte[] key);
new System.ServiceModel.Security.Tokens.BinarySecretSecurityToken : byte[] -> System.ServiceModel.Security.Tokens.BinarySecretSecurityToken
Public Sub New (key As Byte())

Parametry

key
Byte[]

Bajtové pole, které představuje klíč.

Příklady

Následující kód ukazuje, jak volat konstruktor.

BinarySecretSecurityToken CreateProofToken(byte[] proofKey)
{
    return new BinarySecretSecurityToken(proofKey);
}
Function CreateProofToken(ByVal proofKey() As Byte) As BinarySecretSecurityToken
    Return New BinarySecretSecurityToken(proofKey)

End Function

Platí pro

BinarySecretSecurityToken(Int32)

Inicializuje novou instanci BinarySecretSecurityToken třídy.

public:
 BinarySecretSecurityToken(int keySizeInBits);
public BinarySecretSecurityToken (int keySizeInBits);
new System.ServiceModel.Security.Tokens.BinarySecretSecurityToken : int -> System.ServiceModel.Security.Tokens.BinarySecretSecurityToken
Public Sub New (keySizeInBits As Integer)

Parametry

keySizeInBits
Int32

Velikost klíče v bitech.

Platí pro

BinarySecretSecurityToken(String, Byte[])

Inicializuje novou instanci BinarySecretSecurityToken třídy.

public:
 BinarySecretSecurityToken(System::String ^ id, cli::array <System::Byte> ^ key);
public BinarySecretSecurityToken (string id, byte[] key);
new System.ServiceModel.Security.Tokens.BinarySecretSecurityToken : string * byte[] -> System.ServiceModel.Security.Tokens.BinarySecretSecurityToken
Public Sub New (id As String, key As Byte())

Parametry

id
String

ID tokenu.

key
Byte[]

Bajtové pole, které představuje klíč.

Platí pro

BinarySecretSecurityToken(String, Int32)

Inicializuje novou instanci BinarySecretSecurityToken třídy.

public:
 BinarySecretSecurityToken(System::String ^ id, int keySizeInBits);
public BinarySecretSecurityToken (string id, int keySizeInBits);
new System.ServiceModel.Security.Tokens.BinarySecretSecurityToken : string * int -> System.ServiceModel.Security.Tokens.BinarySecretSecurityToken
Public Sub New (id As String, keySizeInBits As Integer)

Parametry

id
String

ID tokenu.

keySizeInBits
Int32

Velikost klíče v bitech.

Výjimky

Buď keySizeInBits je menší než nebo rovno nule, nebo je větší nebo rovno 512, nebo není násobek 8.

Platí pro

BinarySecretSecurityToken(String, Byte[], Boolean)

Inicializuje novou instanci BinarySecretSecurityToken třídy.

protected:
 BinarySecretSecurityToken(System::String ^ id, cli::array <System::Byte> ^ key, bool allowCrypto);
protected BinarySecretSecurityToken (string id, byte[] key, bool allowCrypto);
new System.ServiceModel.Security.Tokens.BinarySecretSecurityToken : string * byte[] * bool -> System.ServiceModel.Security.Tokens.BinarySecretSecurityToken
Protected Sub New (id As String, key As Byte(), allowCrypto As Boolean)

Parametry

id
String

ID tokenu.

key
Byte[]

Bajtové pole, které představuje klíč.

allowCrypto
Boolean

A Boolean , která označuje, jestli chcete povolit kryptografii.

Výjimky

key je null.

Platí pro

BinarySecretSecurityToken(String, Int32, Boolean)

Inicializuje novou instanci BinarySecretSecurityToken třídy.

protected:
 BinarySecretSecurityToken(System::String ^ id, int keySizeInBits, bool allowCrypto);
protected BinarySecretSecurityToken (string id, int keySizeInBits, bool allowCrypto);
new System.ServiceModel.Security.Tokens.BinarySecretSecurityToken : string * int * bool -> System.ServiceModel.Security.Tokens.BinarySecretSecurityToken
Protected Sub New (id As String, keySizeInBits As Integer, allowCrypto As Boolean)

Parametry

id
String

ID tokenu.

keySizeInBits
Int32

Velikost klíče v bitech.

allowCrypto
Boolean

A Boolean , která označuje, jestli chcete povolit kryptografii.

Výjimky

Buď keySizeInBits je menší než nebo rovno nule, nebo je větší nebo rovno 512, nebo není násobek 8.

Platí pro