Microsoft.Protocols.TestSuites.MS_ASWBXML.CodePage.GetTag C# (CSharp) Method

GetTag() public method

Gets the tag name by token
public GetTag ( byte token ) : string
token byte The token of the tag
return string
        public string GetTag(byte token)
        {
            if (this.tokenTag.ContainsKey(token))
            {
                return this.tokenTag[token];
            }

            return null;
        }
    }