Esempio n. 1
0
 public CommanderEvent(TaskCompletionSource <KeyInfo> readKeyCompletitionSource)
 {
     Type = CommanderEventType.ReadKey;
     _readKeyCompletitionSource = readKeyCompletitionSource;
 }
Esempio n. 2
0
 public CommanderEvent(TaskCompletionSource <string> readLineCompletitionSource)
 {
     Type = CommanderEventType.ReadLine;
     _readLineCompletitionSource = readLineCompletitionSource;
 }