public DenseDiscoveryParser(IContentGetter <string> cg, IContentNormalizer cn, ITextSanitizer ts)
 {
     htmlContentGetter = cg;
     contentNormalizer = cn;
     textSanitizer     = ts;
 }
 public ChangelogParser(IContentGetter <string> cg, IContentNormalizer cn, ITextSanitizer ts)
 {
     htmlContentGetter = cg;
     contentNormalizer = cn;
     textSanitizer     = ts;
 }
示例#3
0
 public TheProtocolParser(IContentGetter <string> cg, IContentNormalizer cn, ITextSanitizer ts)
 {
     htlmContentGetter = cg;
     contentNormalizer = cn;
     textSanitizer     = ts;
 }