Interface IUriPartsProcessor
Inherited Members
Namespace: OpenSearch.Client
Assembly: OpenSearch.Client.dll
Syntax
public interface IUriPartsProcessor : IProcessor
Properties
| Edit this page View SourceField
The field to decode
Declaration
[DataMember(Name = "field")]
Field Field { get; set; }
Property Value
Type | Description |
---|---|
Field |
KeepOriginal
If true
the processor copies the unparsed URI to <target_field>.original
.
Declaration
[DataMember(Name = "keep_original")]
bool? KeepOriginal { get; set; }
Property Value
Type | Description |
---|---|
bool? |
RemoveIfSuccessful
If true
the processor removes the Field after parsing the URI string.
If parsing fails, the processor does not remove the Field.
Declaration
[DataMember(Name = "remove_if_successful")]
bool? RemoveIfSuccessful { get; set; }
Property Value
Type | Description |
---|---|
bool? |
TargetField
The field to assign the converted value to, by default Field is updated in-place
Declaration
[DataMember(Name = "target_field")]
Field TargetField { get; set; }
Property Value
Type | Description |
---|---|
Field |