ConversationIndexedItemView Constructors

Definition

Overloads

ConversationIndexedItemView(Int32)

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

ConversationIndexedItemView(Int32, Int32)

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

ConversationIndexedItemView(Int32, Int32, OffsetBasePoint)

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

ConversationIndexedItemView(Int32)

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

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

Parameters

pageSize
Int32

The maximum number of conversations the search operation should return.

Applies to

ConversationIndexedItemView(Int32, Int32)

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

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

Parameters

pageSize
Int32

The maximum number of conversations the search operation should return.

offset
Int32

The offset from the first conversation. Identifies where the page of returned conversations will start.

Remarks

This constructor assumes that the base point starts at the beginning of the set of conversations.

Applies to

ConversationIndexedItemView(Int32, Int32, OffsetBasePoint)

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

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

Parameters

pageSize
Int32

The maximum number of conversations the search operation should return.

offset
Int32

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

offsetBasePoint
OffsetBasePoint

The base point of the offset.

Applies to