dymaptic.GeoBlazor.Core

dymaptic.GeoBlazor.Core.Components

AttachmentsCapabilitiesOperations Class

Describes the configurable attachments operations.
ArcGIS Maps SDK for JavaScript

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

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

Constructors

AttachmentsCapabilitiesOperations() Constructor

Parameterless constructor for use as a Razor Component.

public AttachmentsCapabilitiesOperations();

AttachmentsCapabilitiesOperations(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 AttachmentsCapabilitiesOperations(System.Nullable<bool> add=null, System.Nullable<bool> delete=null, System.Nullable<bool> update=null);

Parameters

add System.Nullable<System.Boolean>

Indicates whether to allow adding attachments.
ArcGIS Maps SDK for JavaScript

delete System.Nullable<System.Boolean>

Indicates whether to allow deleting an existing attachment.
ArcGIS Maps SDK for JavaScript

update System.Nullable<System.Boolean>

Indicates whether to allow updating an existing attachment.
ArcGIS Maps SDK for JavaScript

Properties

AttachmentsCapabilitiesOperations.Add Property

Indicates whether to allow adding attachments.
ArcGIS Maps SDK for JavaScript

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

Property Value

System.Nullable<System.Boolean>

AttachmentsCapabilitiesOperations.Delete Property

Indicates whether to allow deleting an existing attachment.
ArcGIS Maps SDK for JavaScript

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

Property Value

System.Nullable<System.Boolean>

AttachmentsCapabilitiesOperations.Update Property

Indicates whether to allow updating an existing attachment.
ArcGIS Maps SDK for JavaScript

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

Property Value

System.Nullable<System.Boolean>

Methods

AttachmentsCapabilitiesOperations.GetAdd() Method

Asynchronously retrieve the current value of the Add property.

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

Returns

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

AttachmentsCapabilitiesOperations.GetDelete() Method

Asynchronously retrieve the current value of the Delete property.

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

Returns

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

AttachmentsCapabilitiesOperations.GetUpdate() Method

Asynchronously retrieve the current value of the Update property.

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

Returns

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

AttachmentsCapabilitiesOperations.SetAdd(Nullable) Method

Asynchronously set the value of the Add property after render.

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

Parameters

value System.Nullable<System.Boolean>

The value to set.

Returns

System.Threading.Tasks.Task

AttachmentsCapabilitiesOperations.SetDelete(Nullable) Method

Asynchronously set the value of the Delete property after render.

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

Parameters

value System.Nullable<System.Boolean>

The value to set.

Returns

System.Threading.Tasks.Task

AttachmentsCapabilitiesOperations.SetUpdate(Nullable) Method

Asynchronously set the value of the Update property after render.

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

Parameters

value System.Nullable<System.Boolean>

The value to set.

Returns

System.Threading.Tasks.Task