Esempio n. 1
0
 public TaskItem(ServiceProvider site, IVsTextLineMarker textLineMarker, string fileName, string text, bool readOnly, VSTASKCATEGORY cat, VSTASKPRIORITY pri, _vstaskbitmap bitmap, string helpKeyword)
 {
     this.site           = site;
     this.text           = text;
     this.fileName       = fileName;
     this.textLineMarker = textLineMarker;
     this.helpKeyword    = helpKeyword;
     this.category       = cat;
     this.priority       = pri;
     this.bitmap         = bitmap;
     this.readOnly       = readOnly;
 }
Esempio n. 2
0
 public TaskItem(ServiceProvider site, IVsTextLineMarker textLineMarker, string fileName, string text, bool readOnly, VSTASKCATEGORY cat, VSTASKPRIORITY pri, _vstaskbitmap bitmap, string helpKeyword) {
   this.site = site;
   this.text = text;
   this.fileName = fileName;
   this.textLineMarker = textLineMarker;
   this.helpKeyword = helpKeyword;
   this.category = cat;
   this.priority = pri;
   this.bitmap = bitmap;
   this.readOnly = readOnly;
 }