Class UnindexableFiles
- Namespace
- SunamoDevCode.Data
- Assembly
- SunamoDevCode.dll
Singleton class that maintains collections of files that should not be indexed.
public class UnindexableFiles
- Inheritance
-
UnindexableFiles
- Inherited Members
- Extension Methods
Fields
Instance
Gets the singleton instance of UnindexableFiles.
public static UnindexableFiles Instance
Field Value
Properties
UnindexableFileNamesExactlyFiles
Gets or sets files that should not be indexed based on exact file names.
public CollectionWithoutDuplicatesDC<string> UnindexableFileNamesExactlyFiles { get; set; }
Property Value
UnindexableFileNamesFiles
Gets or sets files that should not be indexed based on file names (partial match).
public CollectionWithoutDuplicatesDC<string> UnindexableFileNamesFiles { get; set; }
Property Value
UnindexablePathEndsFiles
Gets or sets files that should not be indexed based on path endings.
public CollectionWithoutDuplicatesDC<string> UnindexablePathEndsFiles { get; set; }
Property Value
UnindexablePathPartsFiles
Gets or sets files that should not be indexed based on path parts.
public CollectionWithoutDuplicatesDC<string> UnindexablePathPartsFiles { get; set; }
Property Value
UnindexablePathStartsFiles
Gets or sets files that should not be indexed based on path starts.
public CollectionWithoutDuplicatesDC<string> UnindexablePathStartsFiles { get; set; }