예제 #1
0
 /// <summary>
 /// Event args for the base AudioHandler class
 /// </summary>
 public Tcc2AudioEventArgs(eTcc2AudioEventType type, Tcc2AudioHandler.eSpeakerDetectionThreshold value)
 {
     EventType = type;
     SpeakerDetectionThreshold = value;
 }
예제 #2
0
 /// <summary>
 /// Event args for the base AudioHandler class
 /// </summary>
 public Tcc2AudioEventArgs(eTcc2AudioEventType type, string value)
 {
     EventType   = type;
     StringValue = value;
 }
예제 #3
0
 /// <summary>
 /// Event args for the base AudioHandler class
 /// </summary>
 public Tcc2AudioEventArgs(eTcc2AudioEventType type, int value)
 {
     EventType = type;
     IntValue  = value;
 }
예제 #4
0
 /// <summary>
 /// Event args for the base AudioHandler class
 /// </summary>
 public Tcc2AudioEventArgs(eTcc2AudioEventType type, bool value)
 {
     EventType = type;
     BoolValue = value;
 }