 | OrderServiceGetListAsync Method (String, NullableUInt32, String, OrderParameters, CancellationToken) |
Note: This is preliminary documentation provided only as a preview, and is subject to change. Please contact the author for pricing and licensing information.
Returns a list of open orders or orders updated during the current day.
Namespace: ETradeNet.OrderAssembly: ETradeNet.Order (in ETradeNet.Order.dll) Version: 1.0.5793.41701
Syntaxpublic Task<IGetListResponse> GetListAsync(
string accountId,
Nullable<uint> count,
string marker,
OrderParameters parameters,
CancellationToken cancellationToken
)
Public Function GetListAsync (
accountId As String,
count As Nullable(Of UInteger),
marker As String,
parameters As OrderParameters,
cancellationToken As CancellationToken
) As Task(Of IGetListResponse)
public:
virtual Task<IGetListResponse^>^ GetListAsync(
String^ accountId,
Nullable<unsigned int> count,
String^ marker,
OrderParameters^ parameters,
CancellationToken cancellationToken
) sealed
abstract GetListAsync :
accountId : string *
count : Nullable<uint32> *
marker : string *
parameters : OrderParameters *
cancellationToken : CancellationToken -> Task<IGetListResponse>
override GetListAsync :
accountId : string *
count : Nullable<uint32> *
marker : string *
parameters : OrderParameters *
cancellationToken : CancellationToken -> Task<IGetListResponse>
Parameters
- accountId
- Type: SystemString
Numeric account ID. Required. - count
- Type: SystemNullableUInt32
The number of orders to return in the response. The default is 25. - marker
- Type: SystemString
The desired starting point of the set of items to return. - parameters
- Type: ETradeNet.OrderOrderParameters
Common parameters. - cancellationToken
- Type: System.ThreadingCancellationToken
Cancellation token.
Return Value
Type:
TaskIGetListResponseGetList method response (asynchronous task).
Implements
IOrderServiceGetListAsync(String, NullableUInt32, String, OrderParameters, CancellationToken)
Exceptions
See Also