言語

SamlAssertion コンストラクター

定義

SamlAssertion クラスの新しいインスタンスを初期化します。

オーバーロード

名前 説明
SamlAssertion()

SamlAssertion クラスの新しいインスタンスを初期化します。

SamlAssertion(String, String, DateTime, SamlConditions, SamlAdvice, IEnumerable<SamlStatement>)

指定した SAML アサーション識別子、アサーションの発行者、アサーションが発行された日時、処理条件のセット、追加情報、および SAML ステートメントのコレクションを使用して、 SamlAssertion クラスの新しいインスタンスを初期化します。

SamlAssertion()

SamlAssertion クラスの新しいインスタンスを初期化します。

public:
 SamlAssertion();
public SamlAssertion();
Public Sub New ()

適用対象

SamlAssertion(String, String, DateTime, SamlConditions, SamlAdvice, IEnumerable<SamlStatement>)

指定した SAML アサーション識別子、アサーションの発行者、アサーションが発行された日時、処理条件のセット、追加情報、および SAML ステートメントのコレクションを使用して、 SamlAssertion クラスの新しいインスタンスを初期化します。

public:
 SamlAssertion(System::String ^ assertionId, System::String ^ issuer, DateTime issueInstant, System::IdentityModel::Tokens::SamlConditions ^ samlConditions, System::IdentityModel::Tokens::SamlAdvice ^ samlAdvice, System::Collections::Generic::IEnumerable<System::IdentityModel::Tokens::SamlStatement ^> ^ samlStatements);
public SamlAssertion(string assertionId, string issuer, DateTime issueInstant, System.IdentityModel.Tokens.SamlConditions samlConditions, System.IdentityModel.Tokens.SamlAdvice samlAdvice, System.Collections.Generic.IEnumerable<System.IdentityModel.Tokens.SamlStatement> samlStatements);
new System.IdentityModel.Tokens.SamlAssertion : string * string * DateTime * System.IdentityModel.Tokens.SamlConditions * System.IdentityModel.Tokens.SamlAdvice * seq<System.IdentityModel.Tokens.SamlStatement> -> System.IdentityModel.Tokens.SamlAssertion
Public Sub New (assertionId As String, issuer As String, issueInstant As DateTime, samlConditions As SamlConditions, samlAdvice As SamlAdvice, samlStatements As IEnumerable(Of SamlStatement))

パラメーター

assertionId
String

アサーションの識別子。

issuer
String

この SAML アサーションを発行した SAML 機関。

issueInstant
DateTime

SAML アサーションが発行された日時を指定する DateTime

samlConditions
SamlConditions

SAML アサーションの有効性を評価するときに考慮できる一連の条件を指定する SamlConditions

samlAdvice
SamlAdvice

SAML アサーションの処理を補助できる SAML 機関によって提供される追加情報を指定する SamlAdvice

samlStatements
IEnumerable<SamlStatement>

SAML ステートメントを含むIEnumerable<T>型のSamlStatement

例外

assertionIdnullです。

-又は-

assertionIdEmptyです。

-又は-

assertionId は、文字または "_" 文字で始まらない。

-又は-

issuernullです。

-又は-

issuerEmptyです。

-又は-

samlStatementsnullです。

-又は-

samlStatements には要素が含まれていません。

-又は-

samlStatements には、 null 要素が含まれています。

注釈

assertionId パラメーターは、文字または "_" 文字で始まる必要があります。

適用対象