SPMeeting.SetAttendeeResponse Method

Sets an attendee response for a meeting.

Namespace:  Microsoft.SharePoint.Meetings
Assembly:  Microsoft.SharePoint (in Microsoft.SharePoint.dll)

Syntax

'Declaration
Public Sub SetAttendeeResponse ( _
    attendeeId As String, _
    uid As String, _
    recurrenceId As UInteger, _
    sequence As UInteger, _
    dateStamp As String, _
    response As UInteger _
)
'Usage
Dim instance As SPMeeting
Dim attendeeId As String
Dim uid As String
Dim recurrenceId As UInteger
Dim sequence As UInteger
Dim dateStamp As String
Dim response As UInteger

instance.SetAttendeeResponse(attendeeId, _
    uid, recurrenceId, sequence, dateStamp, _
    response)
public void SetAttendeeResponse(
    string attendeeId,
    string uid,
    uint recurrenceId,
    uint sequence,
    string dateStamp,
    uint response
)

Parameters

  • attendeeId
    Type: System.String

    A string that contains the e-mail address for the responding user, specified as email_address@domain.ext.

  • uid
    Type: System.String

    A string that contains a unique identifer (UID) for a calendar event, as specified by RFC 2445. For a recurring meeting, each meeting instance shares a common UID. To distinguish between instances of a recurring meeting, each instance is also assigned a RecurrenceID.

  • recurrenceId
    Type: System.UInt32

    A value that identifies an instance of a recurring meeting. For a single-instance meeting, pass 0. For a recurring meeting, pass a value that corresponds to the date of the meeting instance, which should be expressed in the form YYYYMMDD. For example, the value that identifies an instance of a recurring meeting scheduled for May 1, 2010 is 20100501.

  • sequence
    Type: System.UInt32

    A value that denotes the revision sequence number as specified by RFC 2445. Sequence numbers begin at zero and are incremented with each revision. The sequence number is used to determine the order of updates in case they arrive out of order. Updates with a lower-than-current sequence number are discarded.

  • dateStamp
    Type: System.String

    A string that represents the current date and time. The date and time must be expressed as Coordinated Universal Time (UTC) in the format that is specified by ISO 8601, as follows: "yyyyMMdd'T'HHmmss'Z'".

  • response
    Type: System.UInt32

    A value that represents the response from the attendee. Possible values are described in the following table.

    Value

    Description

    0

    Accepted

    1

    Tentative

    2

    Declined

See Also

Reference

SPMeeting Class

SPMeeting Members

Microsoft.SharePoint.Meetings Namespace