Interface ISubscriptionMessage
- Namespace
- StockSharp.Messages
- Assembly
- StockSharp.Messages.dll
The interface describing an message with IsSubscribe property.
public interface ISubscriptionMessage : ITransactionIdMessage, IOriginalTransactionIdMessage, IMessage, ILocalTimeMessage, ICloneable
- Inherited Members
- Extension Methods
Properties
Count
Max count.
long? Count { get; set; }
Property Value
- long?
DataType
Data type info.
DataType DataType { get; }
Property Value
FillGaps
FillGapsDays? FillGaps { get; set; }
Property Value
FilterEnabled
Message contains fields with non default values.
bool FilterEnabled { get; }
Property Value
From
Start date, from which data needs to be retrieved.
DateTimeOffset? From { get; set; }
Property Value
IsSubscribe
The message is subscription.
bool IsSubscribe { get; set; }
Property Value
Skip
Skip count.
long? Skip { get; set; }
Property Value
- long?
To
End date, until which data needs to be retrieved.
DateTimeOffset? To { get; set; }