FixServerSettings
StockSharp.Server.Fix
Settings.
Inherits: BaseServerSettings
Constructors
FixServerSettings
public FixServerSettings()
fixServerSettings = FixServerSettings()
Initializes a new instance of the FixServerSettings.
Properties
CheckSumDisabled
public bool CheckSumDisabled { get; set; }
value = fixServerSettings.CheckSumDisabled
fixServerSettings.CheckSumDisabled = value
Disable checksum.
FixVersion
public string FixVersion { get; set; }
value = fixServerSettings.FixVersion
fixServerSettings.FixVersion = value
FIX protocol version (e.g. "FIX.4.4", "FIX.5.0").
SupportedMessageTypes
public HashSet<string> SupportedMessageTypes { get; private set; }
value = fixServerSettings.SupportedMessageTypes
fixServerSettings.SupportedMessageTypes = value
Supported message types. Empty or contains "*" means all message types are supported.
Methods
IsMessageTypeSupported
public bool IsMessageTypeSupported(string messageType)
result = fixServerSettings.IsMessageTypeSupported(messageType)
Checks whether the given message type is supported by this server.
- messageType
- FIX message type string.
Returns: true if supported.
Load
public override void Load(SettingsStorage storage)
fixServerSettings.Load(storage)
Load settings.
- storage
- SettingsStorage
Save
public override void Save(SettingsStorage storage)
fixServerSettings.Save(storage)
Save settings.
- storage
- SettingsStorage