Interface IFixMessageDefinitions<T>
Namespace: FixAntenna.Fix.Validation.Engine.Utils.Definitions
Assembly: FixAntenna.Validation.dll
Syntax
public interface IFixMessageDefinitions<T>
Type Parameters
Name | Description |
---|---|
T |
Methods
Contains(String)
Checks if Contains input message type in dictionary of FIX protocol
Declaration
bool Contains(string messageType)
Parameters
Type | Name | Description |
---|---|---|
System.String | messageType | Message Type |
Returns
Type | Description |
---|---|
System.Boolean | boolean true if Contains |
Get()
Returns the collection of values of this Map.
Declaration
ICollection<T> Get()
Returns
Type | Description |
---|---|
System.Collections.Generic.ICollection<T> | the messageDefs of this MessageTypes object. |
Get(String)
Gets element from map by key
Declaration
T Get(string messageType)
Parameters
Type | Name | Description |
---|---|---|
System.String | messageType | of type String |
Returns
Type | Description |
---|---|
T | instance of T |
GetMessageTypes()
Returns the messageTypes of this FixDefMap object.
Declaration
ISet<string> GetMessageTypes()
Returns
Type | Description |
---|---|
System.Collections.Generic.ISet<System.String> | the messageTypes of this FixDefMap object. |
Put(IList<T>)
Puts the element into map.
Declaration
void Put(IList<T> elements)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.IList<T> | elements | the list of elements |