public EpubEntrySearchResults(String name, String title, ISearchResultMatchCollection matchCollection)
 {
     this.name            = name;
     this.title           = title;
     this.matchCollection = matchCollection;
     this.branches        = Enumerable.Empty <ISearchResultBranch>();
 }
Exemple #2
0
 public SimpleFileSearchResults(FileInfo fileInfo, ISearchResultMatchCollection matchCollection) :
     base(fileInfo)
 {
     this.matchCollection = matchCollection;
 }
Exemple #3
0
 public XmlNodeSearchResults(String name, ISearchResultMatchCollection matchCollection)
 {
     this.name            = name;
     this.matchCollection = matchCollection;
 }
Exemple #4
0
 public PdfPageSearchResults(int number, ISearchResultMatchCollection matchCollection)
 {
     this.number          = number;
     this.matchCollection = matchCollection;
 }