Share via


FieldMappingFunction.UrlDecode Method

Definition

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