OrderEventArgs
Class public
Provides data for order-related events, carrying the
Order that triggered the event along with a UTC timestamp indicating when the event occurred. Definition
Section titled Definitionpublic class OrderEventArgs : System.EventArgs EventArgs
Inheritance
Section titled Inheritance EventArgs→OrderEventArgs
classDiagram
direction TB
class OrderEventArgs {
}
class EventArgs {
}
EventArgs <|-- OrderEventArgsRemarks
Section titled RemarksInitializes a new instance of the OrderEventArgs class.
Constructors1
Section titled ConstructorsConstructor Section titled Constructor OrderEventArgs.OrderEventArgs( Order order)Provides data for order-related events, carrying the Order that triggered the event along with a UTC timestamp indicating when the event occurred.
Parameters
order Order The order associated with the event.
Exceptions
ArgumentNullException Thrown when
order is null. Remarks
Initializes a new instance of the OrderEventArgs class.
Properties2
Section titled PropertiesOrder Section titled Order Order OrderEventArgs.OrderGets the order associated with this event.
Timestamp Section titled Timestamp DateTimeOffset DateTimeOffset OrderEventArgs.TimestampGets the UTC timestamp indicating when the event was raised.