Class IndexingOptions
Options for indexing the documents in a collection. Please read the Data API documentation before setting specific indexing options.
public class IndexingOptions
- Inheritance
-
IndexingOptions
- Inherited Members
Properties
Allow
List of field names to include in indexing.
[JsonPropertyName("allow")]
public List<string> Allow { get; set; }
Property Value
Deny
List of field names to exclude from indexing.
[JsonPropertyName("deny")]
public List<string> Deny { get; set; }