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