dymaptic.GeoBlazor.Core
dymaptic.GeoBlazor.Core.Components
CapabilitiesMetadata Class
Describes the metadata contained on features in the layer.
ArcGIS Maps SDK for JavaScript
public class CapabilitiesMetadata : dymaptic.GeoBlazor.Core.Components.MapComponent
Inheritance System.Object 🡒 Microsoft.AspNetCore.Components.ComponentBase 🡒 MapComponent 🡒 CapabilitiesMetadata
Constructors
CapabilitiesMetadata() Constructor
Parameterless constructor for use as a Razor Component.
public CapabilitiesMetadata();
CapabilitiesMetadata(Nullable) Constructor
Constructor for use in C# code. Use named parameters (e.g., item1: value1, item2: value2) to set properties in any order.
public CapabilitiesMetadata(System.Nullable<bool> supportsAdvancedFieldProperties=null);
Parameters
supportsAdvancedFieldProperties
System.Nullable<System.Boolean>
Indicates whether to provide a user-defined field description.
ArcGIS Maps SDK for JavaScript
Properties
CapabilitiesMetadata.SupportsAdvancedFieldProperties Property
Indicates whether to provide a user-defined field description.
ArcGIS Maps SDK for JavaScript
public System.Nullable<bool> SupportsAdvancedFieldProperties { get; set; }
Property Value
System.Nullable<System.Boolean>
Methods
CapabilitiesMetadata.GetSupportsAdvancedFieldProperties() Method
Asynchronously retrieve the current value of the SupportsAdvancedFieldProperties property.
public System.Threading.Tasks.Task<System.Nullable<bool>> GetSupportsAdvancedFieldProperties();
Returns
System.Threading.Tasks.Task<System.Nullable<System.Boolean>>
CapabilitiesMetadata.SetSupportsAdvancedFieldProperties(Nullable) Method
Asynchronously set the value of the SupportsAdvancedFieldProperties property after render.
public System.Threading.Tasks.Task SetSupportsAdvancedFieldProperties(System.Nullable<bool> value);
Parameters
value
System.Nullable<System.Boolean>
The value to set.