IndexingParametersExtensions.ParseText Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
ParseText(IndexingParameters) |
Tells the indexer to assume that blobs should be parsed as text files in UTF-8 encoding. See https://docs.microsoft.com/azure/search/search-howto-indexing-azure-blob-storage#indexing-plain-text |
ParseText(IndexingParameters, Encoding) |
Tells the indexer to assume that blobs should be parsed as text files in the desired encoding. See https://docs.microsoft.com/azure/search/search-howto-indexing-azure-blob-storage#indexing-plain-text |
ParseText(IndexingParameters)
Tells the indexer to assume that blobs should be parsed as text files in UTF-8 encoding. See https://docs.microsoft.com/azure/search/search-howto-indexing-azure-blob-storage#indexing-plain-text
public static Microsoft.Azure.Search.Models.IndexingParameters ParseText (this Microsoft.Azure.Search.Models.IndexingParameters parameters);
static member ParseText : Microsoft.Azure.Search.Models.IndexingParameters -> Microsoft.Azure.Search.Models.IndexingParameters
<Extension()>
Public Function ParseText (parameters As IndexingParameters) As IndexingParameters
Parameters
- parameters
- IndexingParameters
IndexingParameters to configure.
Returns
The IndexingParameters instance.
Applies to
ParseText(IndexingParameters, Encoding)
Tells the indexer to assume that blobs should be parsed as text files in the desired encoding. See https://docs.microsoft.com/azure/search/search-howto-indexing-azure-blob-storage#indexing-plain-text
public static Microsoft.Azure.Search.Models.IndexingParameters ParseText (this Microsoft.Azure.Search.Models.IndexingParameters parameters, System.Text.Encoding encoding);
static member ParseText : Microsoft.Azure.Search.Models.IndexingParameters * System.Text.Encoding -> Microsoft.Azure.Search.Models.IndexingParameters
<Extension()>
Public Function ParseText (parameters As IndexingParameters, encoding As Encoding) As IndexingParameters
Parameters
- parameters
- IndexingParameters
IndexingParameters to configure.
- encoding
- Encoding
Encoding used to read the text stored in blobs.
Returns
The IndexingParameters instance.
Applies to
Azure SDK for .NET