다음을 통해 공유


SecurityKeyIdentifierClause 생성자

정의

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

오버로드

SecurityKeyIdentifierClause(String)

지정된 키 식별자 절 형식을 사용하여 SecurityKeyIdentifierClause 클래스의 새 인스턴스를 초기화합니다.

SecurityKeyIdentifierClause(String, Byte[], Int32)

지정된 키 식별자 절 형식, nonce 및 파생 키 길이를 사용하여 SecurityKeyIdentifierClause 클래스의 새 인스턴스를 초기화합니다.

SecurityKeyIdentifierClause(String)

Source:
SecurityKeyIdentifierClause.cs
Source:
SecurityKeyIdentifierClause.cs
Source:
SecurityKeyIdentifierClause.cs

지정된 키 식별자 절 형식을 사용하여 SecurityKeyIdentifierClause 클래스의 새 인스턴스를 초기화합니다.

protected:
 SecurityKeyIdentifierClause(System::String ^ clauseType);
protected SecurityKeyIdentifierClause (string clauseType);
new System.IdentityModel.Tokens.SecurityKeyIdentifierClause : string -> System.IdentityModel.Tokens.SecurityKeyIdentifierClause
Protected Sub New (clauseType As String)

매개 변수

clauseType
String

키 식별자 절 형식입니다. ClauseType 속성의 값을 설정합니다.

설명

이 보안 키 식별자를 XML clauseType 로 직렬화하면 매개 변수가 요소의 ValueType<SecurityTokenReference> 특성으로 직렬화됩니다.

적용 대상

SecurityKeyIdentifierClause(String, Byte[], Int32)

Source:
SecurityKeyIdentifierClause.cs
Source:
SecurityKeyIdentifierClause.cs
Source:
SecurityKeyIdentifierClause.cs

지정된 키 식별자 절 형식, nonce 및 파생 키 길이를 사용하여 SecurityKeyIdentifierClause 클래스의 새 인스턴스를 초기화합니다.

protected:
 SecurityKeyIdentifierClause(System::String ^ clauseType, cli::array <System::Byte> ^ nonce, int length);
protected SecurityKeyIdentifierClause (string clauseType, byte[] nonce, int length);
new System.IdentityModel.Tokens.SecurityKeyIdentifierClause : string * byte[] * int -> System.IdentityModel.Tokens.SecurityKeyIdentifierClause
Protected Sub New (clauseType As String, nonce As Byte(), length As Integer)

매개 변수

clauseType
String

키 식별자 절 형식입니다. ClauseType 속성의 값을 설정합니다.

nonce
Byte[]

파생 키를 만드는 데 사용된 nonce를 포함하는 Byte의 배열입니다. GetDerivationNonce() 메서드에서 반환되는 값을 설정합니다.

length
Int32

파생 키의 크기입니다. DerivationLength 속성의 값을 설정합니다.

설명

Windows Communication Foundation (WCF)에서 유추 된 파생된 키 식별자 생성을 지원 하지 않습니다. 그러나 WCF는 암시적 키 식별자를 포함하는 들어오는 SOAP 메시지를 처리합니다.

적용 대상