Beispiel #1
0
 public void AddIgnoreAttributeFile(string filePath)
 {
     foreach (string id in DocIdExtensions.ReadDocIds(filePath))
     {
         ignorableAttributes.Add(id);
     }
 }
 public ExcludeAttributesFilter(string attributeDocIdFile)
     : base(false)
 {
     _attributeDocIds = DocIdExtensions.ReadDocIds(attributeDocIdFile);
 }
 public DocIdIncludeListFilter(string whiteListFilePath)
 {
     _docIds = DocIdExtensions.ReadDocIds(whiteListFilePath);
 }
Beispiel #4
0
 public DocIdExcludeListFilter(string whiteListFilePath, bool excludeMembers)
 {
     _docIds         = DocIdExtensions.ReadDocIds(whiteListFilePath);
     _excludeMembers = excludeMembers;
 }
 public ExcludeAttributesFilter(string attributeDocIdFile, bool includeForwardedTypes = false)
     : base(excludeAttributes: false, includeForwardedTypes: includeForwardedTypes)
 {
     _attributeDocIds = new HashSet <string>(DocIdExtensions.ReadDocIds(attributeDocIdFile));
 }
 public DocIdExcludeListFilter(string excludeListFilePath, bool excludeMembers)
 {
     _docIds         = new HashSet <string>(DocIdExtensions.ReadDocIds(excludeListFilePath));
     _excludeMembers = excludeMembers;
 }
 public DocIdIncludeListFilter(string includeListFilePath)
 {
     _docIds = new HashSet <string>(DocIdExtensions.ReadDocIds(includeListFilePath));
 }
 public AttributeFilter(string docIdList)
 {
     ignorableAttributes = DocIdExtensions.ReadDocIds(docIdList);
 }
 public ExcludeAttributesFilter(string attributeDocIdFile)
 {
     _attributeDocIds = new HashSet <string>(DocIdExtensions.ReadDocIds(attributeDocIdFile));
 }