Server.SpeechEventArgs.SpeechEventArgs C# (CSharp) Метод

SpeechEventArgs() публичный Метод

public SpeechEventArgs ( Server.Mobile mobile, string speech, MessageType type, int hue, int keywords ) : System
mobile Server.Mobile
speech string
type MessageType
hue int
keywords int
Результат System
		public SpeechEventArgs( Mobile mobile, string speech, MessageType type, int hue, int[] keywords )
		{
			m_Mobile = mobile;
			m_Speech = speech;
			m_Type = type;
			m_Hue = hue;
			m_Keywords = keywords;
		}
	}