BasePagingType.MaxEntriesReturned Property
The MaxEntriesReturned property gets or sets the maximum number of results to return in a FindItem response.
Namespace: ExchangeWebServices
Assembly: EWS (in EWS.dll)
Syntax
'Declaration
Public Property MaxEntriesReturned As Integer
Get
Set
'Usage
Dim instance As BasePagingType
Dim value As Integer
value = instance.MaxEntriesReturned
instance.MaxEntriesReturned = value
public int MaxEntriesReturned { get; set; }
Property Value
Type: System.Int32
The MaxEntriesReturned property returns the maximum number of results from a FindItem Operation.
Remarks
You must set the MaxEntriesReturnedSpecified property to true so that the MaxEntriesReturned property is serialized into the SOAP request.
See Also