ItemView Constructors

Definition

Overloads

ItemView(Int32)

Initializes a new instance of the ItemView class by using the supplied page size.

ItemView(Int32, Int32)

Initializes a new instance of the ItemView class by using the supplied page size and offset.

ItemView(Int32, Int32, OffsetBasePoint)

Initializes a new instance of the ItemView class by using the supplied page size, offset, and base point.

ItemView(Int32)

Initializes a new instance of the ItemView class by using the supplied page size.

public:
 ItemView(int pageSize);
public ItemView (int pageSize);
Public Sub New (pageSize As Integer)

Parameters

pageSize
Int32

The maximum number of items the search operation returns.

Applies to

ItemView(Int32, Int32)

Initializes a new instance of the ItemView class by using the supplied page size and offset.

public:
 ItemView(int pageSize, int offset);
public ItemView (int pageSize, int offset);
Public Sub New (pageSize As Integer, offset As Integer)

Parameters

pageSize
Int32

The maximum number of items the search operation returns.

offset
Int32

The offset of the view from the base point. Identifies where the page of returned items will start.

Applies to

ItemView(Int32, Int32, OffsetBasePoint)

Initializes a new instance of the ItemView class by using the supplied page size, offset, and base point.

public:
 ItemView(int pageSize, int offset, Microsoft::Exchange::WebServices::Data::OffsetBasePoint offsetBasePoint);
public ItemView (int pageSize, int offset, Microsoft.Exchange.WebServices.Data.OffsetBasePoint offsetBasePoint);

Parameters

pageSize
Int32

The maximum number of items the search operation returns.

offset
Int32

The offset of the view from the base point. Identifies where the page of returned items will start.

offsetBasePoint
OffsetBasePoint

The base point of the offset.

Applies to