コード例 #1
0
 public TfsGetItemsDataReader(TfsCommand command)
 {
     Assert.IsNotNull(command);
     this._command = command;
 }
コード例 #2
0
 public TfsQueryHistoryDataReader(TfsCommand command)
 {
     Assert.IsNotNull(command);
     this.command = command;
 }
コード例 #3
0
 public TfsQueryWorkspacesDataReader(TfsCommand command)
 {
     Assert.IsNotNull(command);
     _command = command;
 }
コード例 #4
0
 public TfsQueryPendingSetsDataReader(TfsCommand command)
 {
     Assert.IsNotNull(command);
     this.command = command;
 }
コード例 #5
0
 public TfsDownloadDataReader(TfsCommand command)
 {
     Assert.IsNotNull(command);
     _command = command;
 }
コード例 #6
0
 public TfsDownloadItemVersionsDataReader(TfsCommand command)
 {
     Assert.IsNotNull(command);
     this._command = command;
 }
コード例 #7
0
 public TfsDownloadDataReader(TfsCommand command)
 {
     Contract.Requires <ArgumentNullException>(command != null);
     this.command = command;
 }
コード例 #8
0
 public TfsQueryWorkspacesDataReader(TfsCommand command)
 {
     Contract.Requires <ArgumentNullException>(command != null);
     this.command = command;
 }
コード例 #9
0
 public TfsGetExtendedItemsDataReader(TfsCommand command)
 {
     Contract.Requires <ArgumentNullException>(command != null);
     this.command = command;
 }
コード例 #10
0
 public TfsGetExtendedItemsDataReader(TfsCommand command)
 {
     Assert.IsNotNull(command);
     _command = command;
 }