次の方法で共有


SecurityTokenDescriptor.AddAuthenticationClaims メソッド

定義

指定された認証クレームを現在のインスタンスのサブジェクトに追加します。

オーバーロード

AddAuthenticationClaims(String)

指定された認証方法のクレームを現在のインスタンスのサブジェクトに追加します。 認証時間は現在の時刻に設定されます。

AddAuthenticationClaims(String, DateTime)

指定された認証の種類および認証の時点のクレームを現在のインスタンスのサブジェクトに追加します。

AddAuthenticationClaims(String)

指定された認証方法のクレームを現在のインスタンスのサブジェクトに追加します。 認証時間は現在の時刻に設定されます。

public:
 void AddAuthenticationClaims(System::String ^ authType);
public void AddAuthenticationClaims (string authType);
member this.AddAuthenticationClaims : string -> unit
Public Sub AddAuthenticationClaims (authType As String)

パラメーター

authType
String

認証メソッドを指定する URI。

注釈

Claim要求の種類が の AuthenticationMethod と の値を持つ と、Claim要求のauthType種類が の AuthenticationInstant と のUtcNow値を持つ が、 プロパティでSubject指定された にClaimsIdentity追加されます。

適用対象

AddAuthenticationClaims(String, DateTime)

指定された認証の種類および認証の時点のクレームを現在のインスタンスのサブジェクトに追加します。

public:
 void AddAuthenticationClaims(System::String ^ authType, DateTime time);
public void AddAuthenticationClaims (string authType, DateTime time);
member this.AddAuthenticationClaims : string * DateTime -> unit
Public Sub AddAuthenticationClaims (authType As String, time As DateTime)

パラメーター

authType
String

認証メソッドを指定する URI。

time
DateTime

UTC の認証時間。 時刻が UTC でない場合は、UTC に変換されます。

注釈

Claim要求の種類が の AuthenticationMethod と の値を持つ と、Claim要求のauthType種類が の AuthenticationInstant と のtime値を持つ が、 プロパティでSubject指定された にClaimsIdentity追加されます。

適用対象