Share via


NotificationType.MoreEvents Property

The MoreEvents property gets or sets a value that indicates whether more events to be delivered to the client exist in the queue.

Namespace:  ExchangeWebServices
Assembly:  EWS (in EWS.dll)

Syntax

'Declaration
Public Property MoreEvents As Boolean
    Get
    Set
'Usage
Dim instance As NotificationType
Dim value As Boolean

value = instance.MoreEvents

instance.MoreEvents = value
public bool MoreEvents { get; set; }

Property Value

Type: System.Boolean
The MoreEvents property returns true if more events exist in the queue to be delivered to the client; otherwise, the property returns false.

Remarks

For Pull notifications, a true value in this element indicates to the client that another GetEvents request should be issued to get the remaining events. Assuming that the client specifications require minimum latency for event notifications, GetEvents requests should continue in succession until a falseMoreEvents value is returned.

For Push notifications, a true value for MoreEvents indicates to the client that another notification request will be sent to the client to deliver the remaining events. Similar to Pull notifications, these follow-up requests will continue in succession until the event queue on the Client Access server is empty.