你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
TokenRequestContext 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
TokenRequestContext(String[], String) |
创建具有指定范围的新 TokenRequest。 |
TokenRequestContext(String[], String, String) |
创建具有指定范围的新 TokenRequest。 |
TokenRequestContext(String[], String, String, String) |
创建具有指定范围的新 TokenRequest。 |
TokenRequestContext(String[], String, String, String, Boolean) |
创建具有指定范围的新 TokenRequest。 |
TokenRequestContext(String[], String)
- Source:
- TokenRequestContext.cs
创建具有指定范围的新 TokenRequest。
public TokenRequestContext (string[] scopes, string? parentRequestId);
new Azure.Core.TokenRequestContext : string[] * string -> Azure.Core.TokenRequestContext
Public Sub New (scopes As String(), parentRequestId As String)
参数
- scopes
- String[]
令牌所需的范围。
- parentRequestId
- String
ClientRequestId需要令牌进行身份验证的请求的 (如果适用)。
适用于
TokenRequestContext(String[], String, String)
- Source:
- TokenRequestContext.cs
创建具有指定范围的新 TokenRequest。
public TokenRequestContext (string[] scopes, string? parentRequestId, string? claims);
new Azure.Core.TokenRequestContext : string[] * string * string -> Azure.Core.TokenRequestContext
Public Sub New (scopes As String(), parentRequestId As String, claims As String)
参数
- scopes
- String[]
令牌所需的范围。
- parentRequestId
- String
ClientRequestId需要令牌进行身份验证的请求的 (如果适用)。
- claims
- String
要包含在令牌中的其他声明。
适用于
TokenRequestContext(String[], String, String, String)
- Source:
- TokenRequestContext.cs
创建具有指定范围的新 TokenRequest。
public TokenRequestContext (string[] scopes, string? parentRequestId, string? claims, string? tenantId);
new Azure.Core.TokenRequestContext : string[] * string * string * string -> Azure.Core.TokenRequestContext
Public Sub New (scopes As String(), parentRequestId As String, claims As String, tenantId As String)
参数
- scopes
- String[]
令牌所需的范围。
- parentRequestId
- String
ClientRequestId需要令牌进行身份验证的请求的 (如果适用)。
- claims
- String
要包含在令牌中的其他声明。
- tenantId
- String
要包含在令牌请求中的 tenantId。
适用于
TokenRequestContext(String[], String, String, String, Boolean)
- Source:
- TokenRequestContext.cs
创建具有指定范围的新 TokenRequest。
public TokenRequestContext (string[] scopes, string? parentRequestId = default, string? claims = default, string? tenantId = default, bool isCaeEnabled = false);
new Azure.Core.TokenRequestContext : string[] * string * string * string * bool -> Azure.Core.TokenRequestContext
Public Sub New (scopes As String(), Optional parentRequestId As String = Nothing, Optional claims As String = Nothing, Optional tenantId As String = Nothing, Optional isCaeEnabled As Boolean = false)
参数
- scopes
- String[]
令牌所需的范围。
- parentRequestId
- String
ClientRequestId需要令牌进行身份验证的请求的 (如果适用)。
- claims
- String
要包含在令牌中的其他声明。
- tenantId
- String
要包含在令牌请求中的 tenantId。
- isCaeEnabled
- Boolean
指示是否为请求的令牌启用持续访问评估 (CAE) 。