GeoBlazor Pro

dymaptic.GeoBlazor.Pro

dymaptic.GeoBlazor.Pro.Components

AttachmentsCapabilities Class

An object that specifies the available attachments capabilities.
ArcGIS Maps SDK for JavaScript

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

Inheritance System.Object 🡒 Microsoft.AspNetCore.Components.ComponentBase 🡒 dymaptic.GeoBlazor.Core.Components.MapComponent 🡒 AttachmentsCapabilities

Constructors

AttachmentsCapabilities() Constructor

Parameterless constructor for use as a Razor Component.

public AttachmentsCapabilities();

AttachmentsCapabilities(bool, AttachmentsCapabilitiesOperations) Constructor

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

public AttachmentsCapabilities(bool editing, dymaptic.GeoBlazor.Core.Components.AttachmentsCapabilitiesOperations? operations=null);

Parameters

editing System.Boolean

Indicates whether to allow attachment editing.
ArcGIS Maps SDK for JavaScript

operations dymaptic.GeoBlazor.Core.Components.AttachmentsCapabilitiesOperations

Describes the configurable attachments operations.
ArcGIS Maps SDK for JavaScript

Properties

AttachmentsCapabilities.Editing Property

Indicates whether to allow attachment editing. The feature layer must be enabled to support editing. Default value is false.

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

Property Value

System.Nullable<System.Boolean>

AttachmentsCapabilities.Operations Property

Describes the configurable attachments operations.
ArcGIS Maps SDK for JavaScript

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

Property Value

dymaptic.GeoBlazor.Core.Components.AttachmentsCapabilitiesOperations

Methods

AttachmentsCapabilities.GetEditing() Method

Asynchronously retrieve the current value of the Editing property.

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

Returns

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

AttachmentsCapabilities.GetOperations() Method

Asynchronously retrieve the current value of the Operations property.

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

Returns

System.Threading.Tasks.Task<dymaptic.GeoBlazor.Core.Components.AttachmentsCapabilitiesOperations>

AttachmentsCapabilities.SetEditing(Nullable) Method

Asynchronously set the value of the Editing property after render.

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

Parameters

value System.Nullable<System.Boolean>

The value to set.

Returns

System.Threading.Tasks.Task

AttachmentsCapabilities.SetOperations(AttachmentsCapabilitiesOperations) Method

Asynchronously set the value of the Operations property after render.

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

Parameters

value dymaptic.GeoBlazor.Core.Components.AttachmentsCapabilitiesOperations

The value to set.

Returns

System.Threading.Tasks.Task

AttachmentsCapabilities.ValidateRequiredGeneratedChildren() Method

Validates source-generated child components.

public override void ValidateRequiredGeneratedChildren();

Implements ValidateRequiredGeneratedChildren()