Share via


Meetings.SetAttendeeResponse method

Sets the attendee response for a meeting.

Namespace:  WebSvcMeetings
Assembly:  STSSOAP (in STSSOAP.dll)

Syntax

'Declaration
<SoapDocumentMethodAttribute("https://schemas.microsoft.com/sharepoint/soap/meetings/SetAttendeeResponse", RequestNamespace := "https://schemas.microsoft.com/sharepoint/soap/meetings/",  _
    ResponseNamespace := "https://schemas.microsoft.com/sharepoint/soap/meetings/",  _
    Use := SoapBindingUse.Literal, ParameterStyle := SoapParameterStyle.Wrapped)> _
Public Sub SetAttendeeResponse ( _
    attendeeEmail As String, _
    recurrenceId As UInteger, _
    uid As String, _
    sequence As UInteger, _
    utcDateTimeOrganizerCriticalChange As DateTime, _
    utcDateTimeAttendeeCriticalChange As DateTime, _
    response As AttendeeResponse _
)
'Usage
Dim instance As Meetings
Dim attendeeEmail As String
Dim recurrenceId As UInteger
Dim uid As String
Dim sequence As UInteger
Dim utcDateTimeOrganizerCriticalChange As DateTime
Dim utcDateTimeAttendeeCriticalChange As DateTime
Dim response As AttendeeResponse

instance.SetAttendeeResponse(attendeeEmail, _
    recurrenceId, uid, sequence, utcDateTimeOrganizerCriticalChange, _
    utcDateTimeAttendeeCriticalChange, _
    response)
[SoapDocumentMethodAttribute("https://schemas.microsoft.com/sharepoint/soap/meetings/SetAttendeeResponse", RequestNamespace = "https://schemas.microsoft.com/sharepoint/soap/meetings/", 
    ResponseNamespace = "https://schemas.microsoft.com/sharepoint/soap/meetings/", 
    Use = SoapBindingUse.Literal, ParameterStyle = SoapParameterStyle.Wrapped)]
public void SetAttendeeResponse(
    string attendeeEmail,
    uint recurrenceId,
    string uid,
    uint sequence,
    DateTime utcDateTimeOrganizerCriticalChange,
    DateTime utcDateTimeAttendeeCriticalChange,
    AttendeeResponse response
)

Parameters

  • attendeeEmail
    Type: System.String

    The e-mail address, specified as email_address@domain.ext, for the responding user.

  • recurrenceId
    Type: System.UInt32

    The recurrence ID for the meeting. For single instance meetings, this parameter can be set to zero.

  • uid
    Type: System.String

    A persistent GUID for the calendar component.

  • sequence
    Type: System.UInt32

    An integer used to determine the ordering of updates in case they arrive out of sequence. Updates with a lower-than-current sequence are discarded. If the sequence is equal to the current sequence, the latest update is applied.

  • utcDateTimeOrganizerCriticalChange
    Type: System.DateTime

    This parameter is ignored in this release; therefore, this parameter can be a default date time.

  • utcDateTimeAttendeeCriticalChange
    Type: System.DateTime

    The date and time when the instance of the attendee object was created, expressed in Coordinated Universal Time (UTC).

Remarks

To access the Meetings service and its methods, set a Web reference to https://Server_Name/[sites/][Site_Name/]_vti_bin/Meetings.asmx.

Examples

SOAP Request Format   Following is a sample SOAP request. Replace the placeholders shown with actual values.

POST /_vti_bin/meetings.asmx HTTP/1.1

Host: server_name

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

Content-Length: length

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

meetings/SetAttendeeResponse"

<?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>

<SetAttendeeResponse xmlns=

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

<attendeeEmail>string</attendeeEmail>

<recurrenceId>unsignedInt</recurrenceId>

<uid>string</uid>

<sequence>unsignedInt</sequence>

<utcDateTimeOrganizerCriticalChange>dateTime

</utcDateTimeOrganizerCriticalChange>

<utcDateTimeAttendeeCriticalChange>dateTime

</utcDateTimeAttendeeCriticalChange>

<response>responseAccepted

or responseTentative or

responseDeclined</response>

</SetAttendeeResponse>

</soap:Body>

</soap:Envelope>

SOAP Response Format   Following is a sample SOAP response. Replace the placeholders shown with actual return values.

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>
    <SetAttendeeResponseResponse xmlns=
        "https://schemas.microsoft.com/sharepoint/soap/meetings/" />
  </soap:Body>
</soap:Envelope>

See also

Reference

Meetings class

Meetings members

WebSvcMeetings namespace