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, params 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, params 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 |
---|---|
bool | 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. |