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
CalendarView(DateTime, DateTime, int)
Initializes a new instance of CalendarView.
public CalendarView(DateTime startDate, DateTime endDate, int maxItemsReturned)
Parameters
startDate
DateTimeThe start date.
endDate
DateTimeThe end date.
maxItemsReturned
intThe maximum number of items the search operation should return.
Properties
EndDate
Gets or sets the end date.
public DateTime EndDate { get; set; }
Property Value
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
Traversal
Gets or sets the search traversal mode. Defaults to ItemTraversal.Shallow.
public ItemTraversal Traversal { get; set; }