Share via


Meetings.RemoveMeeting メソッド (websvcMeetings)

会議と会議ワークスペース サイトの関連を削除します。

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

構文

'宣言
<SoapDocumentMethodAttribute("https://schemas.microsoft.com/sharepoint/soap/meetings/RemoveMeeting", RequestNamespace:="https://schemas.microsoft.com/sharepoint/soap/meetings/", ResponseNamespace:="https://schemas.microsoft.com/sharepoint/soap/meetings/", Use:=SoapBindingUse.Literal, ParameterStyle:=SoapParameterStyle.Wrapped)> _
Public Sub RemoveMeeting ( _
    recurrenceId As UInteger, _
    uid As String, _
    sequence As UInteger, _
    utcDateStamp As DateTime, _
    cancelMeeting As Boolean _
)
'使用
Dim instance As Meetings
Dim recurrenceId As UInteger
Dim uid As String
Dim sequence As UInteger
Dim utcDateStamp As DateTime
Dim cancelMeeting As Boolean

instance.RemoveMeeting(recurrenceId, uid, sequence, utcDateStamp, cancelMeeting)
[SoapDocumentMethodAttribute("https://schemas.microsoft.com/sharepoint/soap/meetings/RemoveMeeting", RequestNamespace="https://schemas.microsoft.com/sharepoint/soap/meetings/", ResponseNamespace="https://schemas.microsoft.com/sharepoint/soap/meetings/", Use=SoapBindingUse.Literal, ParameterStyle=SoapParameterStyle.Wrapped)] 
public void RemoveMeeting (
    uint recurrenceId,
    string uid,
    uint sequence,
    DateTime utcDateStamp,
    bool cancelMeeting
)

パラメータ

  • recurrenceId
    関連を必要とする定期的な会議の ID が削除されました。単一インスタンスの会議の場合は、このパラメータに 0 を設定します。
  • uid
    予定表コンポーネントの永続的 GUID。
  • sequence
    更新プログラムが適切な順序で届かない場合に、更新プログラムを適用する順序を決めるために使用される整数。現在より低い順序にある更新プログラムは破棄されます。順序が現在の順序と同じである場合は、最新の更新プログラムが適用されます。
  • utcDateStamp
    iCalendar オブジェクトのインスタンスが作成された日時。このパラメータは UTC 形式 (たとえば、2003-03-04T04:45:22-08:00) にする必要があります。
  • cancelMeeting
    会議を削除する場合は true、会議と会議ワークスペース サイトの関連を削除する場合は false

備考

Meetings サービスおよびそのメソッドにアクセスするには、Web 参照を http://Server_Name/[sites/][Site_Name/]_vti_bin/Meetings.asmx に設定します。

SOAP Request Format   以下にサンプルの SOAP 要求を示します。示されているプレースホルダは実際の値に置き換えます。

POST /_vti_bin/meetings.asmx HTTP/1.1

Host: サーバー名

Content-Type: text/xml; charset=utf-8

Content-Length: 長さ

SOAPAction: "https://schemas.microsoft.com/sharepoint/

soap/meetings/RemoveMeeting"

<?xml version="1.0" encoding="utf-8"?>

<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

xmlns:xsd="http://www.w3.org/2001/XMLSchema"

xmlns:soap="https://schemas.xmlsoap.org/soap/envelope/">

<soap:Body>

<RemoveMeeting xmlns=

"https://schemas.microsoft.com/sharepoint/soap/meetings/">

<recurrenceId>符号なし整数</recurrenceId>

<uid>文字列</uid>

<sequence>符号なし整数</sequence>

<utcDateStamp>日時</utcDateStamp>

<cancelMeeting>ブール値</cancelMeeting>

</RemoveMeeting>

</soap:Body>

</soap:Envelope>

SOAP Response Format   以下にサンプルの SOAP 応答を示します。示されているプレースホルダは実際の戻り値に置き換えます。

HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
    xmlns:soap="https://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <RemoveMeetingResponse xmlns=
        "https://schemas.microsoft.com/sharepoint/soap/meetings/" />
  </soap:Body>
</soap:Envelope>

関連項目

参照

Meetings クラス
Meetings メンバ
websvcMeetings 名前空間