你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
BatchClient.Open 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
Open(BatchSharedKeyCredentials) |
创建 BatchClient 的实例。 |
Open(BatchTokenCredentials) |
创建 BatchClient 的实例。 |
Open(BatchServiceClient) |
阻止调用,该调用创建与指定的 BatchServiceClient关联的 实例BatchClient。 |
Open(BatchSharedKeyCredentials)
- Source:
- BatchClient.cs
创建 BatchClient 的实例。
public static Microsoft.Azure.Batch.BatchClient Open (Microsoft.Azure.Batch.Auth.BatchSharedKeyCredentials credentials);
static member Open : Microsoft.Azure.Batch.Auth.BatchSharedKeyCredentials -> Microsoft.Azure.Batch.BatchClient
Public Shared Function Open (credentials As BatchSharedKeyCredentials) As BatchClient
参数
- credentials
- BatchSharedKeyCredentials
Batch 帐户凭据。
返回
BatchServiceClient 的一个实例。
适用于
Open(BatchTokenCredentials)
- Source:
- BatchClient.cs
创建 BatchClient 的实例。
public static Microsoft.Azure.Batch.BatchClient Open (Microsoft.Azure.Batch.Auth.BatchTokenCredentials credentials);
static member Open : Microsoft.Azure.Batch.Auth.BatchTokenCredentials -> Microsoft.Azure.Batch.BatchClient
Public Shared Function Open (credentials As BatchTokenCredentials) As BatchClient
参数
- credentials
- BatchTokenCredentials
Azure Active Directory Batch 帐户凭据。
返回
BatchServiceClient 的一个实例。
适用于
Open(BatchServiceClient)
- Source:
- BatchClient.cs
阻止调用,该调用创建与指定的 BatchServiceClient关联的 实例BatchClient。
public static Microsoft.Azure.Batch.BatchClient Open (Microsoft.Azure.Batch.Protocol.BatchServiceClient restClient);
static member Open : Microsoft.Azure.Batch.Protocol.BatchServiceClient -> Microsoft.Azure.Batch.BatchClient
Public Shared Function Open (restClient As BatchServiceClient) As BatchClient
参数
- restClient
- BatchServiceClient
要用于对 Batch 服务进行的所有调用的 实例 BatchServiceClient 。 在释放 BatchClient 时,不会释放它。
返回
BatchServiceClient 的一个实例。