FieldMappingFunction.UrlDecode 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.
Creates a field mapping function that performs url decoding of the input string. It assumes that the input string has been url decoded with UTF-8 encoding format.
public static Microsoft.Azure.Search.Models.FieldMappingFunction UrlDecode ();
static member UrlDecode : unit -> Microsoft.Azure.Search.Models.FieldMappingFunction
Public Shared Function UrlDecode () As FieldMappingFunction
Returns
A new field mapping function
Remarks
Sample use case: Some clients that try to update blob custom metadata (which need to be ASCII-encoded) might choose to URL encode the data. To ingest that custom metadata and make search meaningful, the URL decode field mapping function can be used while populating the search index.
Applies to
Azure SDK for .NET