Пример #1
0
        private string FormatMsgTypeValue(string msgType)
        {
            var name = _DataDictionaryLookup.GetMessageName(msgType);

            if (string.IsNullOrWhiteSpace(name))
            {
                return(msgType);
            }
            return(name + "[" + msgType + "]");
        }