다음을 통해 공유


Saml2AssertionKeyIdentifierClause 생성자

정의

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

오버로드

Saml2AssertionKeyIdentifierClause(String)

지정된 ID에 대한 Saml2AssertionKeyIdentifierClause 클래스의 새 인스턴스를 초기화합니다.

Saml2AssertionKeyIdentifierClause(String, Byte[], Int32)

지정된 ID, nonce 및 키 크기에 대한 Saml2AssertionKeyIdentifierClause 클래스의 새 인스턴스를 초기화합니다.

Saml2AssertionKeyIdentifierClause(String)

Source:
Saml2AssertionKeyIdentifierClause.cs
Source:
Saml2AssertionKeyIdentifierClause.cs
Source:
Saml2AssertionKeyIdentifierClause.cs

지정된 ID에 대한 Saml2AssertionKeyIdentifierClause 클래스의 새 인스턴스를 초기화합니다.

public:
 Saml2AssertionKeyIdentifierClause(System::String ^ assertionId);
public:
 Saml2AssertionKeyIdentifierClause(System::String ^ id);
public Saml2AssertionKeyIdentifierClause (string assertionId);
public Saml2AssertionKeyIdentifierClause (string id);
new System.IdentityModel.Tokens.Saml2AssertionKeyIdentifierClause : string -> System.IdentityModel.Tokens.Saml2AssertionKeyIdentifierClause
new System.IdentityModel.Tokens.Saml2AssertionKeyIdentifierClause : string -> System.IdentityModel.Tokens.Saml2AssertionKeyIdentifierClause
Public Sub New (assertionId As String)
Public Sub New (id As String)

매개 변수

assertionIdid
String

예외

idnull 또는 빈 문자열인 경우

적용 대상

Saml2AssertionKeyIdentifierClause(String, Byte[], Int32)

지정된 ID, nonce 및 키 크기에 대한 Saml2AssertionKeyIdentifierClause 클래스의 새 인스턴스를 초기화합니다.

public:
 Saml2AssertionKeyIdentifierClause(System::String ^ id, cli::array <System::Byte> ^ derivationNonce, int derivationLength);
public Saml2AssertionKeyIdentifierClause (string id, byte[] derivationNonce, int derivationLength);
new System.IdentityModel.Tokens.Saml2AssertionKeyIdentifierClause : string * byte[] * int -> System.IdentityModel.Tokens.Saml2AssertionKeyIdentifierClause
Public Sub New (id As String, derivationNonce As Byte(), derivationLength As Integer)

매개 변수

id
String

만들 절을 정의하는 ID입니다.

derivationNonce
Byte[]

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

derivationLength
Int32

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

예외

idnull 또는 빈 문자열인 경우

적용 대상