dymaptic.GeoBlazor.Core

dymaptic.GeoBlazor.Core.Components

Domain Class

Domains define constraints on a layerfield.
ArcGIS Maps SDK for JavaScript

public abstract class Domain : dymaptic.GeoBlazor.Core.Components.MapComponent

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

Derived
↳ CodedValueDomain<T>
↳ InheritedDomain
↳ RangeDomain

Properties

Domain.Name Property

The domain name.

public string? Name { get; set; }

Property Value

System.String

Domain.Type Property

The domain type.

public abstract string Type { get; }

Property Value

System.String

Methods

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

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