BlobIndexerParsingMode Struct

Definition

Represents the parsing mode for indexing from an Azure blob data source.

public readonly struct BlobIndexerParsingMode : IEquatable<Azure.Search.Documents.Indexes.Models.BlobIndexerParsingMode>
type BlobIndexerParsingMode = struct
Public Structure BlobIndexerParsingMode
Implements IEquatable(Of BlobIndexerParsingMode)
Inheritance
BlobIndexerParsingMode
Implements

Constructors

BlobIndexerParsingMode(String)

Initializes a new instance of BlobIndexerParsingMode.

Properties

Default

Set to default for normal file processing.

DelimitedText

Set to delimitedText when blobs are plain CSV files.

Json

Set to json to extract structured content from JSON files.

JsonArray

Set to jsonArray to extract individual elements of a JSON array as separate documents.

JsonLines

Set to jsonLines to extract individual JSON entities, separated by a new line, as separate documents.

Text

Set to text to improve indexing performance on plain text files in blob storage.

Methods

Equals(BlobIndexerParsingMode)

Indicates whether the current object is equal to another object of the same type.

ToString()

Returns the fully qualified type name of this instance.

Operators

Equality(BlobIndexerParsingMode, BlobIndexerParsingMode)

Determines if two BlobIndexerParsingMode values are the same.

Implicit(String to BlobIndexerParsingMode)

Converts a string to a BlobIndexerParsingMode.

Inequality(BlobIndexerParsingMode, BlobIndexerParsingMode)

Determines if two BlobIndexerParsingMode values are not the same.

Applies to