你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

CloudPool.CommitChanges(IEnumerable<BatchClientBehavior>) 方法

定义

将对此CloudPool的所有挂起更改提交到Azure Batch服务。

public void CommitChanges (System.Collections.Generic.IEnumerable<Microsoft.Azure.Batch.BatchClientBehavior> additionalBehaviors = default);
member this.CommitChanges : seq<Microsoft.Azure.Batch.BatchClientBehavior> -> unit
Public Sub CommitChanges (Optional additionalBehaviors As IEnumerable(Of BatchClientBehavior) = Nothing)

参数

additionalBehaviors
IEnumerable<BatchClientBehavior>

在 之后应用于 Batch 服务请求的实例集合BatchClientBehaviorCustomBehaviors

注解

汇报 Batch 服务上现有的 CloudPool ,方法是将其属性替换为已更改的 属性CloudPool。 忽略未更改的属性。 应用自上次从 Batch 服务检索此实体以来的所有更改, (通过 Refresh(DetailLevel, IEnumerable<BatchClientBehavior>)GetPool(String, DetailLevel, IEnumerable<BatchClientBehavior>)ListPools(DetailLevel, IEnumerable<BatchClientBehavior>)) 。 显式设置为 null 的属性将导致异常,因为 Batch 服务不支持将属性设置为 null 的部分更新。 如果需要将属性设置为 null,请使用 Commit(IEnumerable<BatchClientBehavior>) 方法。

这是一个阻止操作。 有关非阻塞等效项,请参阅 CommitChangesAsync(IEnumerable<BatchClientBehavior>, CancellationToken)

适用于