public TfsGetItemsDataReader(TfsCommand command)
 {
     Assert.IsNotNull(command);
     this._command = command;
 }
 public TfsQueryHistoryDataReader(TfsCommand command)
 {
     Assert.IsNotNull(command);
     this.command = command;
 }
 public TfsQueryWorkspacesDataReader(TfsCommand command)
 {
     Assert.IsNotNull(command);
     _command = command;
 }
Example #4
0
 public TfsQueryPendingSetsDataReader(TfsCommand command)
 {
     Assert.IsNotNull(command);
     this.command = command;
 }
 public TfsDownloadDataReader(TfsCommand command)
 {
     Assert.IsNotNull(command);
     _command = command;
 }
 public TfsDownloadItemVersionsDataReader(TfsCommand command)
 {
     Assert.IsNotNull(command);
     this._command = command;
 }
Example #7
0
 public TfsDownloadDataReader(TfsCommand command)
 {
     Contract.Requires <ArgumentNullException>(command != null);
     this.command = command;
 }
 public TfsQueryWorkspacesDataReader(TfsCommand command)
 {
     Contract.Requires <ArgumentNullException>(command != null);
     this.command = command;
 }
 public TfsGetExtendedItemsDataReader(TfsCommand command)
 {
     Contract.Requires <ArgumentNullException>(command != null);
     this.command = command;
 }
 public TfsGetExtendedItemsDataReader(TfsCommand command)
 {
     Assert.IsNotNull(command);
     _command = command;
 }