다음을 통해 공유


SamlAssertionKeyIdentifierClause 생성자

정의

오버로드

SamlAssertionKeyIdentifierClause(String)

지정된 SAML 어설션 식별자를 사용하여 SamlAssertionKeyIdentifierClause 클래스의 새 인스턴스를 초기화합니다.

SamlAssertionKeyIdentifierClause(String, Byte[], Int32)

지정된 SAML 어설션 식별자, nonce 및 키 길이를 사용하여 SamlAssertionKeyIdentifierClause 클래스의 새 인스턴스를 초기화합니다.

SamlAssertionKeyIdentifierClause(String)

Source:
SamlAssertionKeyIdentifierClause.cs
Source:
SamlAssertionKeyIdentifierClause.cs
Source:
SamlAssertionKeyIdentifierClause.cs

지정된 SAML 어설션 식별자를 사용하여 SamlAssertionKeyIdentifierClause 클래스의 새 인스턴스를 초기화합니다.

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

매개 변수

assertionId
String

키 식별자를 포함하는 SamlAssertion의 식별자입니다.

예외

assertionId이(가) null인 경우

설명

AssertionId 속성을 SamlAssertion 이 생성자에 전달합니다.

적용 대상

SamlAssertionKeyIdentifierClause(String, Byte[], Int32)

지정된 SAML 어설션 식별자, nonce 및 키 길이를 사용하여 SamlAssertionKeyIdentifierClause 클래스의 새 인스턴스를 초기화합니다.

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

매개 변수

assertionId
String

키 식별자를 포함하는 SamlAssertion의 식별자입니다.

derivationNonce
Byte[]

파생 키를 만드는 데 사용된 nonce를 포함하는 Byte의 배열입니다.

derivationLength
Int32

파생 키의 크기입니다.

예외

assertionId이(가) null인 경우

설명

AssertionId 속성을 SamlAssertion 이 생성자에 전달합니다.

derivationNoncederivationLength 매개 변수는 클래스가 SamlAssertionKeyIdentifierClause 나가는 SOAP 메시지로 직렬화될 때 무시됩니다.

적용 대상