dymaptic.GeoBlazor.Core
dymaptic.GeoBlazor.Core.Components
SearchLayerField Class
Represents the field of a layer to use for search.
ArcGIS Maps SDK for JavaScript
public class SearchLayerField : dymaptic.GeoBlazor.Core.Components.MapComponent
Inheritance System.Object 🡒 Microsoft.AspNetCore.Components.ComponentBase 🡒 MapComponent 🡒 SearchLayerField
Constructors
SearchLayerField() Constructor
Parameterless constructor for use as a Razor Component.
public SearchLayerField();
SearchLayerField(Nullable, string) Constructor
Constructor for use in C# code. Use named parameters (e.g., item1: value1, item2: value2) to set properties in any order.
public SearchLayerField(System.Nullable<bool> exactMatch=null, string? name=null);
Parameters
exactMatch
System.Nullable<System.Boolean>
Whether or not the field is an exact match.
ArcGIS Maps SDK for JavaScript
name
System.String
The name of the field.
ArcGIS Maps SDK for JavaScript
Properties
SearchLayerField.ExactMatch Property
Whether or not the field is an exact match.
ArcGIS Maps SDK for JavaScript
public System.Nullable<bool> ExactMatch { get; set; }
Property Value
System.Nullable<System.Boolean>
SearchLayerField.Name Property
The name of the field.
ArcGIS Maps SDK for JavaScript
public string? Name { get; set; }
Property Value
Methods
SearchLayerField.GetExactMatch() Method
Asynchronously retrieve the current value of the ExactMatch property.
public System.Threading.Tasks.Task<System.Nullable<bool>> GetExactMatch();
Returns
System.Threading.Tasks.Task<System.Nullable<System.Boolean>>
SearchLayerField.GetName() Method
Asynchronously retrieve the current value of the Name property.
public System.Threading.Tasks.Task<string?> GetName();
Returns
System.Threading.Tasks.Task<System.String>
SearchLayerField.SetExactMatch(Nullable) Method
Asynchronously set the value of the ExactMatch property after render.
public System.Threading.Tasks.Task SetExactMatch(System.Nullable<bool> value);
Parameters
value
System.Nullable<System.Boolean>
The value to set.
Returns
SearchLayerField.SetName(string) Method
Asynchronously set the value of the Name property after render.
public System.Threading.Tasks.Task SetName(string? value);
Parameters
value
System.String
The value to set.