BinarySecretKeyIdentifierClause 생성자

정의

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

오버로드

Name Description
BinarySecretKeyIdentifierClause(Byte[])

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

BinarySecretKeyIdentifierClause(Byte[], Boolean)

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

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

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

BinarySecretKeyIdentifierClause(Byte[])

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

지정된 키를 사용하여 클래스의 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)

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

지정된 값을 사용하여 클래스의 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)

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

지정된 값을 사용하여 클래스의 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)입니다.

derivationLength
Int32

파생할 키의 길이입니다.

적용 대상