dymaptic.GeoBlazor.Core

dymaptic.GeoBlazor.Core.Components

DynamicDataLayerFields Class

Controls field visibility in the layer.
ArcGIS Maps SDK for JavaScript

public class DynamicDataLayerFields : dymaptic.GeoBlazor.Core.Components.MapComponent

Inheritance System.Object 🡒 Microsoft.AspNetCore.Components.ComponentBase 🡒 MapComponent 🡒 DynamicDataLayerFields

Constructors

DynamicDataLayerFields() Constructor

Parameterless constructor for use as a Razor Component.

public DynamicDataLayerFields();

DynamicDataLayerFields(string, string) Constructor

Constructor for use in C# code. Use named parameters (e.g., item1: value1, item2: value2) to set properties in any order.

public DynamicDataLayerFields(string? alias=null, string? name=null);

Parameters

alias System.String

The alias of the field.
ArcGIS Maps SDK for JavaScript

name System.String

The name of the field.
ArcGIS Maps SDK for JavaScript

Properties

DynamicDataLayerFields.Alias Property

The alias of the field.
ArcGIS Maps SDK for JavaScript

public string? Alias { get; set; }

Property Value

System.String

DynamicDataLayerFields.Name Property

The name of the field.
ArcGIS Maps SDK for JavaScript

public string? Name { get; set; }

Property Value

System.String

Methods

DynamicDataLayerFields.GetAlias() Method

Asynchronously retrieve the current value of the Alias property.

public System.Threading.Tasks.Task<string?> GetAlias();

Returns

System.Threading.Tasks.Task<System.String>

DynamicDataLayerFields.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>

DynamicDataLayerFields.SetAlias(string) Method

Asynchronously set the value of the Alias property after render.

public System.Threading.Tasks.Task SetAlias(string value);

Parameters

value System.String

The value to set.

Returns

System.Threading.Tasks.Task

DynamicDataLayerFields.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.

Returns

System.Threading.Tasks.Task