Example #1
0
 public static string GetMessageTypeString(FixMessageType _msgType)
 {
     foreach (var pair in msgType)
     {
         if (pair.Value == _msgType)
         {
             return(pair.Key);
         }
     }
     return("");
 }
Example #2
0
 public static string GetMessageTypeString(FixMessageType _msgType)
 {
     foreach (var pair in msgType)
     {
         if (pair.Value == _msgType) return pair.Key;
     }
     return "";
 }