Click or drag to resize
Event Class
All data resulting from subscriptions or requests and administrative messages are delivered as Events.
Inheritance Hierarchy
SystemObject
  Bloomberglp.BlpapiEvent

Namespace:  Bloomberglp.Blpapi
Assembly:  Bloomberglp.Blpapi (in Bloomberglp.Blpapi.dll) Version: 3.25.11.64-experimental+d519cd77c15f00eb425bcde0dbe3273921f5910b
Syntax
public abstract class Event : IEnumerable<Message>, 
	IEnumerable

The Event type exposes the following members.

Properties
  NameDescription
Public propertyIsValid
Gets true if this event is valid; false otherwise.
Public propertyType
Gets the type of the messages in this Event.
Top
Methods
  NameDescription
Public methodDispose
Releases the memory used by this Event object.
Public methodGetEnumerator
Returns an enumerator over the messages contained in this event.
Public methodGetMessages
Creates an enumerable collection of all messages in this event.
Top
Explicit Interface Implementations
Remarks
Event objects are created by the API and passed to the application either through a registered EventHandler or an IEventQueue or returned from the Session.NextEvent() method. Event objects contain Message objects which can be accessed using Event.GetMessages(). The Event object is a handle to an event. The event is the basic unit of work provided to applications. Each Event object consists of an Event.EventType attribute and zero or more Message objects.
See Also