dymaptic.GeoBlazor.Core

dymaptic.GeoBlazor.Core.Components

CapabilitiesAnalytics Class

Describes what analytics capabilities are enabled on the layer.
ArcGIS Maps SDK for JavaScript

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

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

Constructors

CapabilitiesAnalytics() Constructor

Parameterless constructor for use as a Razor Component.

public CapabilitiesAnalytics();

CapabilitiesAnalytics(Nullable) Constructor

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

public CapabilitiesAnalytics(System.Nullable<bool> supportsCacheHint=null);

Parameters

supportsCacheHint System.Nullable<System.Boolean>

Indicates if the feature service supports cache hint.
ArcGIS Maps SDK for JavaScript

Properties

CapabilitiesAnalytics.SupportsCacheHint Property

Indicates if the feature service supports cache hint.
ArcGIS Maps SDK for JavaScript

public System.Nullable<bool> SupportsCacheHint { get; set; }

Property Value

System.Nullable<System.Boolean>

Methods

CapabilitiesAnalytics.GetSupportsCacheHint() Method

Asynchronously retrieve the current value of the SupportsCacheHint property.

public System.Threading.Tasks.Task<System.Nullable<bool>> GetSupportsCacheHint();

Returns

System.Threading.Tasks.Task<System.Nullable<System.Boolean>>

CapabilitiesAnalytics.SetSupportsCacheHint(Nullable) Method

Asynchronously set the value of the SupportsCacheHint property after render.

public System.Threading.Tasks.Task SetSupportsCacheHint(System.Nullable<bool> value);

Parameters

value System.Nullable<System.Boolean>

The value to set.

Returns

System.Threading.Tasks.Task