다음을 통해 공유


BinarySecretKeyIdentifierClause 생성자

정의

BinarySecretKeyIdentifierClause 클래스의 새 인스턴스를 초기화합니다.

오버로드

BinarySecretKeyIdentifierClause(Byte[])

지정된 키를 사용하여 BinarySecretKeyIdentifierClause 클래스의 새 인스턴스를 초기화합니다.

BinarySecretKeyIdentifierClause(Byte[], Boolean)

지정된 값을 사용하여 BinarySecretKeyIdentifierClause 클래스의 새 인스턴스를 초기화합니다.

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

지정된 값을 사용하여 BinarySecretKeyIdentifierClause 클래스의 새 인스턴스를 초기화합니다.

BinarySecretKeyIdentifierClause(Byte[])

지정된 키를 사용하여 BinarySecretKeyIdentifierClause 클래스의 새 인스턴스를 초기화합니다.

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())

매개 변수

key
Byte[]

키를 나타내는 Byte 배열입니다.

적용 대상

BinarySecretKeyIdentifierClause(Byte[], Boolean)

지정된 값을 사용하여 BinarySecretKeyIdentifierClause 클래스의 새 인스턴스를 초기화합니다.

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)

매개 변수

key
Byte[]

키를 나타내는 Byte 배열입니다.

cloneBuffer
Boolean

버퍼를 복제하려면 true이고, 그렇지 않으면 false입니다.

적용 대상

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

지정된 값을 사용하여 BinarySecretKeyIdentifierClause 클래스의 새 인스턴스를 초기화합니다.

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)

매개 변수

key
Byte[]

키를 나타내는 Byte 배열입니다.

cloneBuffer
Boolean

버퍼를 복제하려면 true이고, 그렇지 않으면 false입니다.

derivationNonce
Byte[]

키를 파생하는 데 사용된 nonce("number used once")입니다.

derivationLength
Int32

파생될 키의 길이입니다.

적용 대상