dymaptic.GeoBlazor.Core

dymaptic.GeoBlazor.Core.Components

CapabilitiesQueryTopFeatures Class

Describes top features query operations that can be performed on features in the layer.
ArcGIS Maps SDK for JavaScript

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

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

Constructors

CapabilitiesQueryTopFeatures() Constructor

Parameterless constructor for use as a Razor Component.

public CapabilitiesQueryTopFeatures();

CapabilitiesQueryTopFeatures(Nullable) Constructor

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

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

Parameters

supportsCacheHint System.Nullable<System.Boolean>

Indicates if the top query operation supports a cache hint.
ArcGIS Maps SDK for JavaScript

Properties

CapabilitiesQueryTopFeatures.SupportsCacheHint Property

Indicates if the top query operation supports a cache hint.
ArcGIS Maps SDK for JavaScript

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

Property Value

System.Nullable<System.Boolean>

Methods

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

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