Class MessageInfo
Provides information about the FIX message.
Implements
Inherited Members
Namespace: OnixS.Fix.Dictionaries
Assembly: OnixS.Fix.Engine.dll
Syntax
public class MessageInfo : FieldContainerInfo, IList<FieldInfo>, ICollection<FieldInfo>, IReadOnlyList<FieldInfo>, IReadOnlyCollection<FieldInfo>, IEnumerable<FieldInfo>, IEnumerable, ICloneable
Constructors
MessageInfo(String)
Constructor.
Declaration
public MessageInfo(string type)
Parameters
Type | Name | Description |
---|---|---|
String | type | Message type. |
MessageInfo(String, FieldInfo[])
Constructor.
Declaration
public MessageInfo(string type, params FieldInfo[] fields)
Parameters
Type | Name | Description |
---|---|---|
String | type | Message type. |
FieldInfo[] | fields | List of message fields. |
MessageInfo(String, String)
Constructor.
Declaration
public MessageInfo(string type, string name)
Parameters
Type | Name | Description |
---|---|---|
String | type | Message type. |
String | name | Message name. |
MessageInfo(String, String, FieldInfo[])
Constructor.
Declaration
public MessageInfo(string type, string name, params FieldInfo[] fields)
Parameters
Type | Name | Description |
---|---|---|
String | type | Message type. |
String | name | Message name. |
FieldInfo[] | fields | List of message fields. |
Properties
Description
Message description.
Declaration
public string Description { get; set; }
Property Value
Type | Description |
---|---|
String | Message description |
IsSessionLevel
true
if session is session-level, false
otherwise.
Declaration
public bool IsSessionLevel { get; }
Property Value
Type | Description |
---|---|
Boolean | Message description |
Name
Message name.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
String | Message name |
Type
Message type.
Declaration
public string Type { get; set; }
Property Value
Type | Description |
---|---|
String | Message type |
Methods
Clone()
Creates a new object that is a copy of the current instance.
Declaration
public virtual object Clone()
Returns
Type | Description |
---|---|
Object | A new object that is a copy of this instance. |
ToString()
Returns a string that represents the current object.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
String | A string that represents the current object. |