SecurityTokenDescriptor.AddAuthenticationClaims 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
添加指定的身份验证声明到当前实例的主题。
重载
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 、值为 authType
且Claim声明类型为 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 、值为 authType
且Claim声明类型为 AuthenticationInstant 且值为 的 time
将添加到 属性Subject指定的 中ClaimsIdentity。