NotificationType.MoreEvents Property

Definition

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

public:
 property bool MoreEvents { bool get(); void set(bool value); };
public bool MoreEvents { get; set; }
Public Property MoreEvents As Boolean

Property Value

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.

Applies to