PoEWhisperNotifier.LogMonitor.MessageTypeForChatSymbol C# (CSharp) Method

MessageTypeForChatSymbol() public static method

Returns the message type that corresponds to the given chat symbol, or Unknown if none does.
public static MessageTypeForChatSymbol ( string ChatSymbol ) : LogMessageType
ChatSymbol string
return LogMessageType
		public static LogMessageType MessageTypeForChatSymbol(string ChatSymbol) {
			LogMessageType Res;
			if (!SymbolToMessageType.TryGetValue(ChatSymbol, out Res))
				Res = LogMessageType.Unknown;
			return Res;
		}