/// <summary>
 /// Constructor
 /// </summary>
 /// <param name="content">Recognized notification event</param>
 public EventListEntry(sr.SpeechRecognizedNotification content)
 {
     SpeechRecognized = content;
     Timestamp        = DateTime.Now.Ticks;
 }
Exemplo n.º 2
0
 public JoinAlpha(object[] args)
 {
     TypeOfMoving = (string)args[0];
     Recognition  = (Microsoft.Robotics.Technologies.Speech.SpeechRecognizer.Proxy.SpeechRecognizedNotification)args[1];
 }