Beispiel #1
0
 public RunQueryEvent(IResultsTarget target, RunStyle runStyle)
 {
     ResultsTarget = target;
     RunStyle      = runStyle;
 }
Beispiel #2
0
 public RunQueryEvent(IResultsTarget target)
 {
     ResultsTarget = target;
     RunStyle      = new RunStyle("Run", RunStyleIcons.RunOnly, false, false, false, "");
 }
Beispiel #3
0
 public NewDocumentEvent(IResultsTarget target)
 {
     _target = target;
 }
Beispiel #4
0
 public NewDocumentEvent(IResultsTarget target, DocumentViewModel activeDocument)
 {
     _target        = target;
     ActiveDocument = activeDocument;
 }
Beispiel #5
0
 public RunQueryEvent(IResultsTarget target)
 {
     ResultsTarget = target;
     ClearCache    = false;
 }
Beispiel #6
0
 public RunQueryEvent(IResultsTarget target, bool clearCache)
 {
     ResultsTarget = target;
     ClearCache    = clearCache;
 }
Beispiel #7
0
 public QueryResultsPaneMessageEvent(IResultsTarget target)
 {
     _target = target;
 }
 public QueryResultsPaneMessageEvent(IResultsTarget target)
 {
     _target = target;
 }
Beispiel #9
0
 public RunQueryEvent(IResultsTarget target, RunStyle runStyle, bool isBenchmark)
 {
     ResultsTarget = target;
     RunStyle      = runStyle;
     IsBenchmark   = isBenchmark;
 }
Beispiel #10
0
 public RunQueryEvent(IResultsTarget target, RunStyle runStyle)
 {
     ResultsTarget = target;
     RunStyle      = runStyle;
     IsBenchmark   = false;
 }
 public NewDocumentEvent(IResultsTarget target)
 {
     _target = target;
 }