BootstrapContext コンストラクター

定義

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

オーバーロード

BootstrapContext(Byte[])

指定した配列を使用して、BootstrapContext クラスの新しいインスタンスを初期化します。

BootstrapContext(String)

指定した文字列を使用して、BootstrapContext クラスの新しいインスタンスを初期化します。

BootstrapContext(SecurityToken, SecurityTokenHandler)

指定したセキュリティ トークンとトークン ハンドラーを使用して、BootstrapContext クラスの新しいインスタンスを初期化します。

BootstrapContext(SerializationInfo, StreamingContext)

ストリームから BootstrapContext クラスの新しいインスタンスを初期化します。

BootstrapContext(Byte[])

指定した配列を使用して、BootstrapContext クラスの新しいインスタンスを初期化します。

public:
 BootstrapContext(cli::array <System::Byte> ^ token);
public BootstrapContext (byte[] token);
new System.IdentityModel.Tokens.BootstrapContext : byte[] -> System.IdentityModel.Tokens.BootstrapContext
Public Sub New (token As Byte())

パラメーター

token
Byte[]

トークンを表す配列。

例外

tokennullです。

適用対象

BootstrapContext(String)

指定した文字列を使用して、BootstrapContext クラスの新しいインスタンスを初期化します。

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

パラメーター

token
String

トークンを表す文字列。

例外

tokennullです。

適用対象

BootstrapContext(SecurityToken, SecurityTokenHandler)

指定したセキュリティ トークンとトークン ハンドラーを使用して、BootstrapContext クラスの新しいインスタンスを初期化します。

public:
 BootstrapContext(System::IdentityModel::Tokens::SecurityToken ^ token, System::IdentityModel::Tokens::SecurityTokenHandler ^ tokenHandler);
public BootstrapContext (System.IdentityModel.Tokens.SecurityToken token, System.IdentityModel.Tokens.SecurityTokenHandler tokenHandler);
new System.IdentityModel.Tokens.BootstrapContext : System.IdentityModel.Tokens.SecurityToken * System.IdentityModel.Tokens.SecurityTokenHandler -> System.IdentityModel.Tokens.BootstrapContext
Public Sub New (token As SecurityToken, tokenHandler As SecurityTokenHandler)

パラメーター

token
SecurityToken

シリアル化するセキュリティ トークン。

tokenHandler
SecurityTokenHandler

トークンをシリアル化するためのハンドラー。

例外

tokennullです。

または

tokenHandlernull です。

注釈

トークン ハンドラーはトークンの逆シリアル化には使用されません。トークンが逆シリアル化された時点で存在しているとは見なされないためです。

適用対象

BootstrapContext(SerializationInfo, StreamingContext)

ストリームから BootstrapContext クラスの新しいインスタンスを初期化します。

protected:
 BootstrapContext(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected BootstrapContext (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.IdentityModel.Tokens.BootstrapContext : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.IdentityModel.Tokens.BootstrapContext
Protected Sub New (info As SerializationInfo, context As StreamingContext)

パラメーター

info
SerializationInfo

シリアル化データ。

context
StreamingContext

シリアル化のコンテキスト。

例外

infonull です。

適用対象