你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
AuthenticationWithTokenRefresh 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
AuthenticationWithTokenRefresh(Int32, Int32) |
初始化 AuthenticationWithTokenRefresh 类的新实例。 |
AuthenticationWithTokenRefresh(Int32, Int32, Boolean) |
初始化 AuthenticationWithTokenRefresh 类的新实例。 |
AuthenticationWithTokenRefresh(Int32, Int32)
初始化 AuthenticationWithTokenRefresh 类的新实例。
public AuthenticationWithTokenRefresh (int suggestedTimeToLiveSeconds, int timeBufferPercentage);
new Microsoft.Azure.Devices.Client.AuthenticationWithTokenRefresh : int * int -> Microsoft.Azure.Devices.Client.AuthenticationWithTokenRefresh
Public Sub New (suggestedTimeToLiveSeconds As Integer, timeBufferPercentage As Integer)
参数
- suggestedTimeToLiveSeconds
- Int32
令牌生存时间建议值。 此抽象的实现可以选择忽略此值。
- timeBufferPercentage
- Int32
令牌续订前的时间缓冲区以生存时间的百分比表示。
注解
此构造函数将创建一个身份验证方法实例,该实例在释放关联的设备/模块客户端实例时将被释放。 若要跨多个客户端实例生存期重复使用身份验证方法实例,请使用 AuthenticationWithTokenRefresh(Int32, Int32, Boolean) 构造函数并将 设置为 disposeWithClient
false
。
适用于
AuthenticationWithTokenRefresh(Int32, Int32, Boolean)
初始化 AuthenticationWithTokenRefresh 类的新实例。
public AuthenticationWithTokenRefresh (int suggestedTimeToLiveSeconds, int timeBufferPercentage, bool disposeWithClient);
new Microsoft.Azure.Devices.Client.AuthenticationWithTokenRefresh : int * int * bool -> Microsoft.Azure.Devices.Client.AuthenticationWithTokenRefresh
Public Sub New (suggestedTimeToLiveSeconds As Integer, timeBufferPercentage As Integer, disposeWithClient As Boolean)
参数
- suggestedTimeToLiveSeconds
- Int32
令牌生存时间建议值。 此抽象的实现可以选择忽略此值。
- timeBufferPercentage
- Int32
令牌续订前的时间缓冲区以生存时间的百分比表示。
- disposeWithClient
- Boolean