Table of Contents

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

UnindexableFiles

Properties

UnindexableFileNamesExactlyFiles

Gets or sets files that should not be indexed based on exact file names.

public CollectionWithoutDuplicatesDC<string> UnindexableFileNamesExactlyFiles { get; set; }

Property Value

CollectionWithoutDuplicatesDC<string>

UnindexableFileNamesFiles

Gets or sets files that should not be indexed based on file names (partial match).

public CollectionWithoutDuplicatesDC<string> UnindexableFileNamesFiles { get; set; }

Property Value

CollectionWithoutDuplicatesDC<string>

UnindexablePathEndsFiles

Gets or sets files that should not be indexed based on path endings.

public CollectionWithoutDuplicatesDC<string> UnindexablePathEndsFiles { get; set; }

Property Value

CollectionWithoutDuplicatesDC<string>

UnindexablePathPartsFiles

Gets or sets files that should not be indexed based on path parts.

public CollectionWithoutDuplicatesDC<string> UnindexablePathPartsFiles { get; set; }

Property Value

CollectionWithoutDuplicatesDC<string>

UnindexablePathStartsFiles

Gets or sets files that should not be indexed based on path starts.

public CollectionWithoutDuplicatesDC<string> UnindexablePathStartsFiles { get; set; }

Property Value

CollectionWithoutDuplicatesDC<string>