Batch 元素 (视图)
适用于: SharePoint 2016 |SharePoint Foundation 2013 |SharePoint Online |SharePoint Server 2013
提供对 HTTP 协议中命令的批处理。
<Batch
OnError = "Return" | "Continue"
ListVersion = ""
Version = ""
ViewName = "">
<Method>
...
</Method>
...
</Batch>
元素和属性
下面各部分介绍了属性、子元素和父元素。
Attributes
属性 | 说明 |
---|---|
ListVersion |
可选属性,类型为 Integer。 指定列表的版本号。 |
OnError |
可选。 以下是可能的值: Return — 在遇到第一个错误之后,停止执行任何方法。 这是默认选项。 Continue — 在遇到错误后,继续执行后续方法。 |
版本 |
可选 字符串。 指定在服务器上运行的 Microsoft SharePoint Foundation 的版本号。 版本号由 N.N.N.NNNN 格式的四个整数组成,表示产品的主要版本、次要版本、阶段版本和增量版本。 |
ViewName |
可选属性,类型为 Guid。 指定视图的 GUID。 |
子元素
父元素
无
出现次数
- 最小值:0
- 最大值:1
备注
Batch 元素必须至少包含一个 Method 元素。Batch 元素允许客户端应用程序一次性向服务器传送多个命令。
示例
下面的代码示例(如果该示例包含在 HTTP 协议内)将从服务器返回一个名为“Documents”的列表。
<?xml version="1.0" encoding="UTF-8"?>
<ows:Batch Version="6.0.2.5608" OnError="Return">
<Method ID="0,ExportList">
<SetList Scope="Request">Documents</SetList>
<SetVar Name="Cmd">ExportList</SetVar>
</Method>
</ows:Batch>