Base class for VSS revision action descriptions.
Exemple #1
0
 internal VssRevision(VssItem item, RevisionRecord revision, CommentRecord comment)
 {
     this.item = item;
     this.action = CreateAction(revision, item);
     this.revision = revision;
     this.comment = comment;
 }
 internal VssRevision(VssItem item, RevisionRecord revision, CommentRecord comment)
 {
     this.item     = item;
     this.action   = CreateAction(revision, item);
     this.revision = revision;
     this.comment  = comment;
 }
Exemple #3
0
 public Revision(DateTime dateTime, string user, VssItemName item,
     int version, string comment, VssAction action)
 {
     this.dateTime = dateTime;
     this.user = user;
     this.item = item;
     this.version = version;
     this.comment = comment;
     this.action = action;
 }