次の方法で共有


Dws.UpdateDwsData メソッド (websvcDocumentWorkspace)

名前空間: websvcDocumentWorkspace
アセンブリ: STSSOAP (stssoap.dll 内)

構文

'宣言
<SoapDocumentMethodAttribute("https://schemas.microsoft.com/sharepoint/soap/dws/UpdateDwsData", RequestNamespace:="https://schemas.microsoft.com/sharepoint/soap/dws/", ResponseNamespace:="https://schemas.microsoft.com/sharepoint/soap/dws/", Use:=SoapBindingUse.Literal, ParameterStyle:=SoapParameterStyle.Wrapped)> _
Public Function UpdateDwsData ( _
    updates As String, _
    meetingInstance As String _
) As String
'使用
Dim instance As Dws
Dim updates As String
Dim meetingInstance As String
Dim returnValue As String

returnValue = instance.UpdateDwsData(updates, meetingInstance)
[SoapDocumentMethodAttribute("https://schemas.microsoft.com/sharepoint/soap/dws/UpdateDwsData", RequestNamespace="https://schemas.microsoft.com/sharepoint/soap/dws/", ResponseNamespace="https://schemas.microsoft.com/sharepoint/soap/dws/", Use=SoapBindingUse.Literal, ParameterStyle=SoapParameterStyle.Wrapped)] 
public string UpdateDwsData (
    string updates,
    string meetingInstance
)

パラメータ

  • updates
    StringCollaborative Application Markup Language (CAML) の一括更新形式で指定したアイテム更新の一覧。たとえば、次の一括更新を使用して、ドキュメント ワークスペース サイトのタスクの一覧に新しいタスクを保存します。

    <?xml version="1.0" encoding="UTF-8"?>
    <ows:Batch OnError="Continue" xmlns:ows="http://tempuri.org/">
    <SetVar Name="DatesInGregorian">TRUE</SetVar>
    <SetVar Name="TimesInUTC">TRUE</SetVar>
    <Method ID="New">
    <SetList Scope="Request">{EA448C91-16D4-411E-AC42-7BA092641E60}</SetList>
    <SetVar Name="Cmd">Save</SetVar>
    <SetVar Name="ID">New</SetVar>
    <SetVar Name="urn:schemas-microsoft-com:office:office#Title">Test</SetVar>
    <SetVar Name="urn:schemas-microsoft-com:office:office#AssignedTo">1</SetVar>
    <SetVar Name="urn:schemas-microsoft-com:office:office#Status">Not Started</SetVar>
    <SetVar Name="urn:schemas-microsoft-com:office:office#Priority">(2) Normal</SetVar>
    <SetVar Name="urn:schemas-microsoft-com:office:office#DueDate">2003-02-11T16:00:00Z</SetVar>
    <SetVar Name="urn:schemas-microsoft-com:office:office#Body">&lt;div&gt;This is the description.&lt;/div&gt;</SetVar>
    </Method>
    </ows:Batch>
    
  • meetingInstance
    String。定期的な会議のインスタンス (オプション)。meetingInstance パラメータは、一括更新全体に適用され、UpdateDwsData メソッドでの新しいリスト アイテムの追加先となる会議インスタンスを指定します。

戻り値

成功した場合は、空の <Result/> タグを返す文字列。

例外

例外の種類 条件

DwsError.Conflict (4)

指定されたアイテムは、別のユーザーによって変更されています。

DwsError.ItemNotFound (5)

指定されたアイテムが見つかりませんでした。

DwsError.ListNotFound (7)

指定されたリストが見つかりませんでした。

DwsError.QuoteExceeded (14)

ユーザーのクォータを超えます。

備考

UpdateDwsData メソッドは、CAML 一括更新形式を使用してデータを提供することにより、ドキュメント ワークスペース サイトのアイテムに対して一括更新を実行します。

UpdateDwsData メソッドは、[共有添付ファイル] 機能をサポートする Microsoft Office アプリケーションによって使用されます。

関連項目

参照

Dws クラス
Dws メンバ
websvcDocumentWorkspace 名前空間