IEWSClient.ListAppointments

ListAppointments()

Retrieves list of appointments for default calendar folder

public Appointment[] ListAppointments()

Return Value

Returns array of appointments

See Also


ListAppointments(string)

Retrieves list of appointments for specified calendar folder

public Appointment[] ListAppointments(string folderUri)
ParameterTypeDescription
folderUriStringA folder to search appointments in.

Return Value

Returns array of appointments

See Also


ListAppointments(string, bool)

Retrieves list of appointments for specified calendar folder

public Appointment[] ListAppointments(string folderUri, bool recursive)
ParameterTypeDescription
folderUriStringA folder to search appointments in.
recursiveBooleanIndicates whether recursive listing or not.

Return Value

Returns array of appointments

See Also


ListAppointments(bool)

Retrieves list of appointments for default calendar folder

public Appointment[] ListAppointments(bool recursive)
ParameterTypeDescription
recursiveBooleanIndicates whether recursive listing or not.

Return Value

Returns array of appointments

See Also


ListAppointments(MailQuery)

Retrieves list of appointments for default calendar folder

public Appointment[] ListAppointments(MailQuery query)
ParameterTypeDescription
queryMailQueryMailQuery that represents appointments search criteria.

Return Value

Returns array of appointments

See Also


ListAppointments(string, MailQuery)

Retrieves list of appointments for specified calendar folder

public Appointment[] ListAppointments(string folderUri, MailQuery query)
ParameterTypeDescription
folderUriStringA folder to search appointments in.
queryMailQueryMailQuery that represents appointments search criteria.

Return Value

Returns array of appointments

See Also


ListAppointments(MailQuery, bool)

Retrieves list of appointments for default calendar folder

public Appointment[] ListAppointments(MailQuery query, bool recursive)
ParameterTypeDescription
queryMailQueryMailQuery that represents appointments search criteria.
recursiveBooleanIndicates whether recursive listing or not.

Return Value

Returns array of appointments

See Also


ListAppointments(string, MailQuery, bool)

Retrieves list of appointments for specified calendar folder

public Appointment[] ListAppointments(string folderUri, MailQuery query, bool recursive)
ParameterTypeDescription
folderUriStringA folder to search appointments in.
queryMailQueryMailQuery that represents appointments search criteria.
recursiveBooleanIndicates whether recursive listing or not.

Return Value

Returns array of appointments

See Also