WebAuthenticatorResult 类

定义

从回调 URL 分析的 Web 验证器结果。

public class WebAuthenticatorResult
继承
System.Object
WebAuthenticatorResult

注解

所有查询字符串或 URL 片段属性都解析为字典,并可通过其键进行访问。

构造函数

WebAuthenticatorResult()

从回调 URL 分析的 Web 验证器结果。

WebAuthenticatorResult(IDictionary<String,String>)

Create现有字典中的新实例。

WebAuthenticatorResult(Uri)

通过分析 Uri 的 querystring 参数来Create新实例。

属性

AccessToken

键的值 access_token

ExpiresIn

由创建结果时的时间戳计算的到期日期,加上键的值(以秒为单位 expires_in )。

IdToken

键的值 id_token

Properties

分析的键/值对字典构成回调 URI 的 querystring。

RefreshToken

键的值 refresh_token

RefreshTokenExpiresIn

刷新令牌到期日期,由创建结果时的时间戳加上refresh_token_expires_in密钥的值(以秒为单位)。

Timestamp

实例化类时的时间戳,通常对应于请求的已分析结果。

方法

Get(String)

从字典中获取给定键的值。

Put(String, String)

将键/值对放入字典中。

适用于