BRM_vscp_message.CVscpMsgMap.Decode C# (CSharp) Method

Decode() public method

public Decode ( string i_eventName, byte i_dataBytes ) : string
i_eventName string
i_dataBytes byte
return string
        public string Decode(string i_eventName, byte[] i_dataBytes)
        {
            if (m_eventNameToHelperMap.ContainsKey(i_eventName))
                return m_eventNameToHelperMap[i_eventName].ToString(i_dataBytes);
            else
                return string.Empty;
        }