コード例 #1
0
ファイル: Session.cs プロジェクト: wizard2773/DevAudit
 public Session(ISpawnable spawnable, string line_terminator)
 {
     _spawnable     = spawnable;
     LineTerminator = line_terminator;
     Expect         = new ExpectCommands(this);
     Send           = new SendCommands(this);
 }
コード例 #2
0
ファイル: Session.cs プロジェクト: allisterb/Expect.NET
 public Session(ISpawnable spawnable, string line_terminator, CancellationToken ct)
 {
     _spawnable     = spawnable;
     LineTerminator = line_terminator;
     Expect         = new ExpectCommands(this);
     Send           = new SendCommands(this);
     Ct             = ct;
 }