dymaptic.GeoBlazor.Core

dymaptic.GeoBlazor.Core.Components

CapabilitiesQueryRelated Class

Indicates if the layer’s query operation supports querying features or records related to features in the layer.
ArcGIS Maps SDK for JavaScript

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

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

Constructors

CapabilitiesQueryRelated() Constructor

Parameterless constructor for use as a Razor Component.

public CapabilitiesQueryRelated();

CapabilitiesQueryRelated(Nullable, Nullable, Nullable, Nullable) Constructor

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

public CapabilitiesQueryRelated(System.Nullable<bool> supportsCacheHint=null, System.Nullable<bool> supportsCount=null, System.Nullable<bool> supportsOrderBy=null, System.Nullable<bool> supportsPagination=null);

Parameters

supportsCacheHint System.Nullable<System.Boolean>

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

supportsCount System.Nullable<System.Boolean>

Indicates if the layer’s query response includes the number of features or records related to features in the layer.
ArcGIS Maps SDK for JavaScript

supportsOrderBy System.Nullable<System.Boolean>

Indicates if the related features or records returned in the query response can be ordered by one or more fields.
ArcGIS Maps SDK for JavaScript

supportsPagination System.Nullable<System.Boolean>

Indicates if the query response supports pagination for related features or records.
ArcGIS Maps SDK for JavaScript

Properties

CapabilitiesQueryRelated.SupportsCacheHint Property

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

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

Property Value

System.Nullable<System.Boolean>

CapabilitiesQueryRelated.SupportsCount Property

Indicates if the layer’s query response includes the number of features or records related to features in the layer.
ArcGIS Maps SDK for JavaScript

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

Property Value

System.Nullable<System.Boolean>

CapabilitiesQueryRelated.SupportsOrderBy Property

Indicates if the related features or records returned in the query response can be ordered by one or more fields.
ArcGIS Maps SDK for JavaScript

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

Property Value

System.Nullable<System.Boolean>

CapabilitiesQueryRelated.SupportsPagination Property

Indicates if the query response supports pagination for related features or records.
ArcGIS Maps SDK for JavaScript

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

Property Value

System.Nullable<System.Boolean>

Methods

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

CapabilitiesQueryRelated.GetSupportsCount() Method

Asynchronously retrieve the current value of the SupportsCount property.

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

Returns

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

CapabilitiesQueryRelated.GetSupportsOrderBy() Method

Asynchronously retrieve the current value of the SupportsOrderBy property.

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

Returns

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

CapabilitiesQueryRelated.GetSupportsPagination() Method

Asynchronously retrieve the current value of the SupportsPagination property.

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

Returns

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

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

CapabilitiesQueryRelated.SetSupportsCount(Nullable) Method

Asynchronously set the value of the SupportsCount property after render.

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

Parameters

value System.Nullable<System.Boolean>

The value to set.

Returns

System.Threading.Tasks.Task

CapabilitiesQueryRelated.SetSupportsOrderBy(Nullable) Method

Asynchronously set the value of the SupportsOrderBy property after render.

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

Parameters

value System.Nullable<System.Boolean>

The value to set.

Returns

System.Threading.Tasks.Task

CapabilitiesQueryRelated.SetSupportsPagination(Nullable) Method

Asynchronously set the value of the SupportsPagination property after render.

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

Parameters

value System.Nullable<System.Boolean>

The value to set.

Returns

System.Threading.Tasks.Task