BinarySecretKeyIdentifierClause Constructors

Definition

Initializes a new instance of the BinarySecretKeyIdentifierClause class.

Overloads

BinarySecretKeyIdentifierClause(Byte[])

Initializes a new instance of the BinarySecretKeyIdentifierClause class using the specified key.

BinarySecretKeyIdentifierClause(Byte[], Boolean)

Initializes a new instance of the BinarySecretKeyIdentifierClause class using the specified values.

BinarySecretKeyIdentifierClause(Byte[], Boolean, Byte[], Int32)

Initializes a new instance of the BinarySecretKeyIdentifierClause class using the specified values.

BinarySecretKeyIdentifierClause(Byte[])

Source:
BinarySecretKeyIdentifierClause.cs
Source:
BinarySecretKeyIdentifierClause.cs
Source:
BinarySecretKeyIdentifierClause.cs

Initializes a new instance of the BinarySecretKeyIdentifierClause class using the specified key.

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

Parameters

key
Byte[]

A Byte array that represents the key.

Applies to

BinarySecretKeyIdentifierClause(Byte[], Boolean)

Source:
BinarySecretKeyIdentifierClause.cs
Source:
BinarySecretKeyIdentifierClause.cs
Source:
BinarySecretKeyIdentifierClause.cs

Initializes a new instance of the BinarySecretKeyIdentifierClause class using the specified values.

public:
 BinarySecretKeyIdentifierClause(cli::array <System::Byte> ^ key, bool cloneBuffer);
public BinarySecretKeyIdentifierClause (byte[] key, bool cloneBuffer);
new System.ServiceModel.Security.BinarySecretKeyIdentifierClause : byte[] * bool -> System.ServiceModel.Security.BinarySecretKeyIdentifierClause
Public Sub New (key As Byte(), cloneBuffer As Boolean)

Parameters

key
Byte[]

A Byte array that represents the key.

cloneBuffer
Boolean

true to clone the buffer; otherwise, false.

Applies to

BinarySecretKeyIdentifierClause(Byte[], Boolean, Byte[], Int32)

Source:
BinarySecretKeyIdentifierClause.cs
Source:
BinarySecretKeyIdentifierClause.cs
Source:
BinarySecretKeyIdentifierClause.cs

Initializes a new instance of the BinarySecretKeyIdentifierClause class using the specified values.

public:
 BinarySecretKeyIdentifierClause(cli::array <System::Byte> ^ key, bool cloneBuffer, cli::array <System::Byte> ^ derivationNonce, int derivationLength);
public BinarySecretKeyIdentifierClause (byte[] key, bool cloneBuffer, byte[] derivationNonce, int derivationLength);
new System.ServiceModel.Security.BinarySecretKeyIdentifierClause : byte[] * bool * byte[] * int -> System.ServiceModel.Security.BinarySecretKeyIdentifierClause
Public Sub New (key As Byte(), cloneBuffer As Boolean, derivationNonce As Byte(), derivationLength As Integer)

Parameters

key
Byte[]

A Byte array that represents the key.

cloneBuffer
Boolean

true to clone the buffer; otherwise, false.

derivationNonce
Byte[]

The "number used once" (nonce) used to derive the key.

derivationLength
Int32

The length of the key to be derived.

Applies to