IndexingParametersExtensions.ParseDelimitedTextFiles Method

Definition

Tells the indexer to assume that all blobs are delimited text files. Currently only comma-separated value (CSV) text files are supported. See https://docs.microsoft.com/azure/search/search-howto-index-csv-blobs for details.

public static Microsoft.Azure.Search.Models.IndexingParameters ParseDelimitedTextFiles (this Microsoft.Azure.Search.Models.IndexingParameters parameters, params string[] headers);
static member ParseDelimitedTextFiles : Microsoft.Azure.Search.Models.IndexingParameters * string[] -> Microsoft.Azure.Search.Models.IndexingParameters
<Extension()>
Public Function ParseDelimitedTextFiles (parameters As IndexingParameters, ParamArray headers As String()) As IndexingParameters

Parameters

parameters
IndexingParameters

IndexingParameters to configure.

headers
String[]

Specifies column headers that the indexer will use to map values to specific fields in the search index. If you don't specify any headers, the indexer assumes that the first non-blank line of each blob contains comma-separated headers.

Returns

The IndexingParameters instance.

Remarks

This option only applies to indexers that index Azure Blob Storage.

Applies to