FindFolderType.Item Property
The Item property gets or sets the paging type that describes how the query result set is paged in the response. This property gets or sets either an IndexedPageViewType or FractionalPageViewType object. This property is optional. This is a read/write property.
Namespace: ExchangeWebServices
Assembly: EWS (in EWS.dll)
Syntax
'Declaration
Public Property Item As BasePagingType
Get
Set
'Usage
Dim instance As FindFolderType
Dim value As BasePagingType
value = instance.Item
instance.Item = value
public BasePagingType Item { get; set; }
Property Value
Type: ExchangeWebServices.BasePagingType
The Item property returns a BasePagingType object that represents the type of paging to be performed for the query set.
Remarks
The Item property can be set with either the IndexedPageViewType or FractionalPageViewType objects. All these types extend BasePagingType, which is an abstract class. This property is optional. If this property is not set, the default behavior is to return a view that includes all the folders in the result set.
See Also