public RunbookReference(SortedRunbookCollection allRunbooks, Runbook sourceRunbook, string runbookName, int lineNumber, string lineContent)
 {
     this._allRunbooks      = allRunbooks;
     this.SourceRunbook     = sourceRunbook;
     this.TargetRunbookName = runbookName;
     this.LineNumber        = lineNumber;
     this.LineContent       = lineContent;
 }
Exemplo n.º 2
0
 public Runbook(SortedRunbookCollection allRunbooks, string filePath, string fileUrl)
 {
     this._allRunbooks = allRunbooks;
     this.FilePath     = filePath;
     this.FileUrl      = fileUrl;
 }