dymaptic.GeoBlazor.Core

dymaptic.GeoBlazor.Core.Components

ArcGISImageServiceCapabilities Class

Describes the layer’s supported capabilities.
ArcGIS Maps SDK for JavaScript

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

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

Constructors

ArcGISImageServiceCapabilities() Constructor

Parameterless constructor for use as a Razor Component.

public ArcGISImageServiceCapabilities();

ArcGISImageServiceCapabilities(ArcGISImageServiceCapabilitiesMensuration, ArcGISImageServiceCapabilitiesOperations, ArcGISImageServiceCapabilitiesQuery) Constructor

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

public ArcGISImageServiceCapabilities(dymaptic.GeoBlazor.Core.Components.ArcGISImageServiceCapabilitiesMensuration? mensuration=null, dymaptic.GeoBlazor.Core.Components.ArcGISImageServiceCapabilitiesOperations? operations=null, dymaptic.GeoBlazor.Core.Model.ArcGISImageServiceCapabilitiesQuery? query=null);

Parameters

mensuration ArcGISImageServiceCapabilitiesMensuration

Describes mensuration operations supported by the ImageryLayer.
ArcGIS Maps SDK for JavaScript

operations ArcGISImageServiceCapabilitiesOperations

Describes operations supported by the ImageryLayer.
ArcGIS Maps SDK for JavaScript

query ArcGISImageServiceCapabilitiesQuery

Describes query operations supported by the layer.
ArcGIS Maps SDK for JavaScript

Properties

ArcGISImageServiceCapabilities.Mensuration Property

Describes mensuration operations supported by the ImageryLayer.
ArcGIS Maps SDK for JavaScript

public dymaptic.GeoBlazor.Core.Components.ArcGISImageServiceCapabilitiesMensuration? Mensuration { get; set; }

Property Value

ArcGISImageServiceCapabilitiesMensuration

ArcGISImageServiceCapabilities.Operations Property

Describes operations supported by the ImageryLayer.
ArcGIS Maps SDK for JavaScript

public dymaptic.GeoBlazor.Core.Components.ArcGISImageServiceCapabilitiesOperations? Operations { get; set; }

Property Value

ArcGISImageServiceCapabilitiesOperations

ArcGISImageServiceCapabilities.Query Property

Describes query operations supported by the layer.
ArcGIS Maps SDK for JavaScript

public dymaptic.GeoBlazor.Core.Model.ArcGISImageServiceCapabilitiesQuery? Query { get; set; }

Property Value

ArcGISImageServiceCapabilitiesQuery

Methods

ArcGISImageServiceCapabilities.GetMensuration() Method

Asynchronously retrieve the current value of the Mensuration property.

public System.Threading.Tasks.Task<dymaptic.GeoBlazor.Core.Components.ArcGISImageServiceCapabilitiesMensuration?> GetMensuration();

Returns

System.Threading.Tasks.Task<ArcGISImageServiceCapabilitiesMensuration>

ArcGISImageServiceCapabilities.GetOperations() Method

Asynchronously retrieve the current value of the Operations property.

public System.Threading.Tasks.Task<dymaptic.GeoBlazor.Core.Components.ArcGISImageServiceCapabilitiesOperations?> GetOperations();

Returns

System.Threading.Tasks.Task<ArcGISImageServiceCapabilitiesOperations>

ArcGISImageServiceCapabilities.GetQuery() Method

Asynchronously retrieve the current value of the Query property.

public System.Threading.Tasks.Task<dymaptic.GeoBlazor.Core.Model.ArcGISImageServiceCapabilitiesQuery?> GetQuery();

Returns

System.Threading.Tasks.Task<ArcGISImageServiceCapabilitiesQuery>

ArcGISImageServiceCapabilities.SetMensuration(ArcGISImageServiceCapabilitiesMensuration) Method

Asynchronously set the value of the Mensuration property after render.

public System.Threading.Tasks.Task SetMensuration(dymaptic.GeoBlazor.Core.Components.ArcGISImageServiceCapabilitiesMensuration? value);

Parameters

value ArcGISImageServiceCapabilitiesMensuration

The value to set.

Returns

System.Threading.Tasks.Task

ArcGISImageServiceCapabilities.SetOperations(ArcGISImageServiceCapabilitiesOperations) Method

Asynchronously set the value of the Operations property after render.

public System.Threading.Tasks.Task SetOperations(dymaptic.GeoBlazor.Core.Components.ArcGISImageServiceCapabilitiesOperations? value);

Parameters

value ArcGISImageServiceCapabilitiesOperations

The value to set.

Returns

System.Threading.Tasks.Task

ArcGISImageServiceCapabilities.SetQuery(ArcGISImageServiceCapabilitiesQuery) Method

Asynchronously set the value of the Query property after render.

public System.Threading.Tasks.Task SetQuery(dymaptic.GeoBlazor.Core.Model.ArcGISImageServiceCapabilitiesQuery? value);

Parameters

value ArcGISImageServiceCapabilitiesQuery

The value to set.

Returns

System.Threading.Tasks.Task

ArcGISImageServiceCapabilities.ValidateRequiredGeneratedChildren() Method

Validates source-generated child components.

public override void ValidateRequiredGeneratedChildren();

Implements ValidateRequiredGeneratedChildren()