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 、值为 authTypeClaim声明类型为 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 、值为 authTypeClaim声明类型为 AuthenticationInstant 且值为 的 time 将添加到 属性Subject指定的 中ClaimsIdentity

适用于