Class OrderUpdatedEventArgs
Represents the event arguments sent in a TradeSubscription.OrderUpdated callback
Inheritance
Object
EventArgs
OrderUpdatedEventArgs
Inherited Members
EventArgs.Empty
Object.Equals(Object)
Object.Equals(Object, Object)
Object.GetHashCode()
Object.GetType()
Object.MemberwiseClone()
Object.ReferenceEquals(Object, Object)
Namespace: tt_net_sdk
Assembly: tt-net-api.dll
Syntax
public class OrderUpdatedEventArgs : EventArgs
Remarks
This object is returned by the TradeSubscription.OrderUpdated event. It contains the state of the Order before and after the update.
Properties
Message
Declaration
public string Message { get; }
Property Value
Type | Description |
---|---|
String |
NewOrder
Declaration
public Order NewOrder { get; }
Property Value
Type | Description |
---|---|
Order |
OldOrder
Declaration
public Order OldOrder { get; }
Property Value
Type | Description |
---|---|
Order |
Methods
ToString()
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
String |
Overrides
System.Object.ToString()