Table of Contents

Class CalendarView

Namespace
Microsoft.Exchange.WebServices.Data
Assembly
Microsoft.Exchange.WebServices.dll

Represents a date range view of appointments in calendar folder search operations.

public sealed class CalendarView : ViewBase
Inheritance
CalendarView
Inherited Members

Constructors

CalendarView(DateTime, DateTime)

Initializes a new instance of CalendarView.

public CalendarView(DateTime startDate, DateTime endDate)

Parameters

startDate DateTime

The start date.

endDate DateTime

The end date.

CalendarView(DateTime, DateTime, int)

Initializes a new instance of CalendarView.

public CalendarView(DateTime startDate, DateTime endDate, int maxItemsReturned)

Parameters

startDate DateTime

The start date.

endDate DateTime

The end date.

maxItemsReturned int

The maximum number of items the search operation should return.

Properties

EndDate

Gets or sets the end date.

public DateTime EndDate { get; set; }

Property Value

DateTime

MaxItemsReturned

The maximum number of items the search operation should return.

public int? MaxItemsReturned { get; set; }

Property Value

int?

StartDate

Gets or sets the start date.

public DateTime StartDate { get; set; }

Property Value

DateTime

Traversal

Gets or sets the search traversal mode. Defaults to ItemTraversal.Shallow.

public ItemTraversal Traversal { get; set; }

Property Value

ItemTraversal