共用方式為


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

適用於