dymaptic.GeoBlazor.Core
dymaptic.GeoBlazor.Core.Components
CapabilitiesEditing Class
Describes editing capabilities that can be performed on the features in the layer via applyEdits().
ArcGIS Maps SDK for JavaScript
public class CapabilitiesEditing : dymaptic.GeoBlazor.Core.Components.MapComponent
Inheritance System.Object 🡒 Microsoft.AspNetCore.Components.ComponentBase 🡒 MapComponent 🡒 CapabilitiesEditing
Constructors
CapabilitiesEditing() Constructor
Parameterless constructor for use as a Razor Component.
public CapabilitiesEditing();
CapabilitiesEditing(Nullable, Nullable, Nullable, Nullable, Nullable, 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 CapabilitiesEditing(System.Nullable<bool> supportsDeleteByAnonymous=null, System.Nullable<bool> supportsDeleteByOthers=null, System.Nullable<bool> supportsGeometryUpdate=null, System.Nullable<bool> supportsGlobalId=null, System.Nullable<bool> supportsRollbackOnFailure=null, System.Nullable<bool> supportsUpdateByAnonymous=null, System.Nullable<bool> supportsUpdateByOthers=null, System.Nullable<bool> supportsUpdateWithoutM=null, System.Nullable<bool> supportsUploadWithItemId=null);
Parameters
supportsDeleteByAnonymous
System.Nullable<System.Boolean>
Indicates if anonymous users can delete features created by others.
ArcGIS Maps SDK for JavaScript
supportsDeleteByOthers
System.Nullable<System.Boolean>
Indicates if logged in users can delete features created by others.
ArcGIS Maps SDK for JavaScript
supportsGeometryUpdate
System.Nullable<System.Boolean>
Indicates if the geometry of the features in the layer can be edited.
ArcGIS Maps SDK for JavaScript
supportsGlobalId
System.Nullable<System.Boolean>
Indicates if the globalId
values provided by the client are used in applyEdits.
ArcGIS Maps SDK for JavaScript
supportsRollbackOnFailure
System.Nullable<System.Boolean>
Indicates if the rollbackOnFailureEnabled
parameter can be set to true
or false
when editing features.
ArcGIS Maps SDK for JavaScript
supportsUpdateByAnonymous
System.Nullable<System.Boolean>
Indicates if anonymous users can update features created by others.
ArcGIS Maps SDK for JavaScript
supportsUpdateByOthers
System.Nullable<System.Boolean>
Indicates if logged in users can update features created by others.
ArcGIS Maps SDK for JavaScript
supportsUpdateWithoutM
System.Nullable<System.Boolean>
Indicates if m-values
must be provided when updating features.
ArcGIS Maps SDK for JavaScript
supportsUploadWithItemId
System.Nullable<System.Boolean>
Indicates if the layer supports uploading attachments by UploadId.
ArcGIS Maps SDK for JavaScript
Properties
CapabilitiesEditing.SupportsDeleteByAnonymous Property
Indicates if anonymous users can delete features created by others.
ArcGIS Maps SDK for JavaScript
public System.Nullable<bool> SupportsDeleteByAnonymous { get; set; }
Property Value
System.Nullable<System.Boolean>
CapabilitiesEditing.SupportsDeleteByOthers Property
Indicates if logged in users can delete features created by others.
ArcGIS Maps SDK for JavaScript
public System.Nullable<bool> SupportsDeleteByOthers { get; set; }
Property Value
System.Nullable<System.Boolean>
CapabilitiesEditing.SupportsGeometryUpdate Property
Indicates if the geometry of the features in the layer can be edited.
ArcGIS Maps SDK for JavaScript
public System.Nullable<bool> SupportsGeometryUpdate { get; set; }
Property Value
System.Nullable<System.Boolean>
CapabilitiesEditing.SupportsGlobalId Property
Indicates if the globalId
values provided by the client are used in applyEdits.
ArcGIS Maps SDK for JavaScript
public System.Nullable<bool> SupportsGlobalId { get; set; }
Property Value
System.Nullable<System.Boolean>
CapabilitiesEditing.SupportsRollbackOnFailure Property
Indicates if the rollbackOnFailureEnabled
parameter can be set to true
or false
when editing features.
ArcGIS Maps SDK for JavaScript
public System.Nullable<bool> SupportsRollbackOnFailure { get; set; }
Property Value
System.Nullable<System.Boolean>
CapabilitiesEditing.SupportsUpdateByAnonymous Property
Indicates if anonymous users can update features created by others.
ArcGIS Maps SDK for JavaScript
public System.Nullable<bool> SupportsUpdateByAnonymous { get; set; }
Property Value
System.Nullable<System.Boolean>
CapabilitiesEditing.SupportsUpdateByOthers Property
Indicates if logged in users can update features created by others.
ArcGIS Maps SDK for JavaScript
public System.Nullable<bool> SupportsUpdateByOthers { get; set; }
Property Value
System.Nullable<System.Boolean>
CapabilitiesEditing.SupportsUpdateWithoutM Property
Indicates if m-values
must be provided when updating features.
ArcGIS Maps SDK for JavaScript
public System.Nullable<bool> SupportsUpdateWithoutM { get; set; }
Property Value
System.Nullable<System.Boolean>
CapabilitiesEditing.SupportsUploadWithItemId Property
Indicates if the layer supports uploading attachments by UploadId.
ArcGIS Maps SDK for JavaScript
public System.Nullable<bool> SupportsUploadWithItemId { get; set; }
Property Value
System.Nullable<System.Boolean>
Methods
CapabilitiesEditing.GetSupportsDeleteByAnonymous() Method
Asynchronously retrieve the current value of the SupportsDeleteByAnonymous property.
public System.Threading.Tasks.Task<System.Nullable<bool>> GetSupportsDeleteByAnonymous();
Returns
System.Threading.Tasks.Task<System.Nullable<System.Boolean>>
CapabilitiesEditing.GetSupportsDeleteByOthers() Method
Asynchronously retrieve the current value of the SupportsDeleteByOthers property.
public System.Threading.Tasks.Task<System.Nullable<bool>> GetSupportsDeleteByOthers();
Returns
System.Threading.Tasks.Task<System.Nullable<System.Boolean>>
CapabilitiesEditing.GetSupportsGeometryUpdate() Method
Asynchronously retrieve the current value of the SupportsGeometryUpdate property.
public System.Threading.Tasks.Task<System.Nullable<bool>> GetSupportsGeometryUpdate();
Returns
System.Threading.Tasks.Task<System.Nullable<System.Boolean>>
CapabilitiesEditing.GetSupportsGlobalId() Method
Asynchronously retrieve the current value of the SupportsGlobalId property.
public System.Threading.Tasks.Task<System.Nullable<bool>> GetSupportsGlobalId();
Returns
System.Threading.Tasks.Task<System.Nullable<System.Boolean>>
CapabilitiesEditing.GetSupportsRollbackOnFailure() Method
Asynchronously retrieve the current value of the SupportsRollbackOnFailure property.
public System.Threading.Tasks.Task<System.Nullable<bool>> GetSupportsRollbackOnFailure();
Returns
System.Threading.Tasks.Task<System.Nullable<System.Boolean>>
CapabilitiesEditing.GetSupportsUpdateByAnonymous() Method
Asynchronously retrieve the current value of the SupportsUpdateByAnonymous property.
public System.Threading.Tasks.Task<System.Nullable<bool>> GetSupportsUpdateByAnonymous();
Returns
System.Threading.Tasks.Task<System.Nullable<System.Boolean>>
CapabilitiesEditing.GetSupportsUpdateByOthers() Method
Asynchronously retrieve the current value of the SupportsUpdateByOthers property.
public System.Threading.Tasks.Task<System.Nullable<bool>> GetSupportsUpdateByOthers();
Returns
System.Threading.Tasks.Task<System.Nullable<System.Boolean>>
CapabilitiesEditing.GetSupportsUpdateWithoutM() Method
Asynchronously retrieve the current value of the SupportsUpdateWithoutM property.
public System.Threading.Tasks.Task<System.Nullable<bool>> GetSupportsUpdateWithoutM();
Returns
System.Threading.Tasks.Task<System.Nullable<System.Boolean>>
CapabilitiesEditing.GetSupportsUploadWithItemId() Method
Asynchronously retrieve the current value of the SupportsUploadWithItemId property.
public System.Threading.Tasks.Task<System.Nullable<bool>> GetSupportsUploadWithItemId();
Returns
System.Threading.Tasks.Task<System.Nullable<System.Boolean>>
CapabilitiesEditing.SetSupportsDeleteByAnonymous(Nullable) Method
Asynchronously set the value of the SupportsDeleteByAnonymous property after render.
public System.Threading.Tasks.Task SetSupportsDeleteByAnonymous(System.Nullable<bool> value);
Parameters
value
System.Nullable<System.Boolean>
The value to set.
Returns
CapabilitiesEditing.SetSupportsDeleteByOthers(Nullable) Method
Asynchronously set the value of the SupportsDeleteByOthers property after render.
public System.Threading.Tasks.Task SetSupportsDeleteByOthers(System.Nullable<bool> value);
Parameters
value
System.Nullable<System.Boolean>
The value to set.
Returns
CapabilitiesEditing.SetSupportsGeometryUpdate(Nullable) Method
Asynchronously set the value of the SupportsGeometryUpdate property after render.
public System.Threading.Tasks.Task SetSupportsGeometryUpdate(System.Nullable<bool> value);
Parameters
value
System.Nullable<System.Boolean>
The value to set.
Returns
CapabilitiesEditing.SetSupportsGlobalId(Nullable) Method
Asynchronously set the value of the SupportsGlobalId property after render.
public System.Threading.Tasks.Task SetSupportsGlobalId(System.Nullable<bool> value);
Parameters
value
System.Nullable<System.Boolean>
The value to set.
Returns
CapabilitiesEditing.SetSupportsRollbackOnFailure(Nullable) Method
Asynchronously set the value of the SupportsRollbackOnFailure property after render.
public System.Threading.Tasks.Task SetSupportsRollbackOnFailure(System.Nullable<bool> value);
Parameters
value
System.Nullable<System.Boolean>
The value to set.
Returns
CapabilitiesEditing.SetSupportsUpdateByAnonymous(Nullable) Method
Asynchronously set the value of the SupportsUpdateByAnonymous property after render.
public System.Threading.Tasks.Task SetSupportsUpdateByAnonymous(System.Nullable<bool> value);
Parameters
value
System.Nullable<System.Boolean>
The value to set.
Returns
CapabilitiesEditing.SetSupportsUpdateByOthers(Nullable) Method
Asynchronously set the value of the SupportsUpdateByOthers property after render.
public System.Threading.Tasks.Task SetSupportsUpdateByOthers(System.Nullable<bool> value);
Parameters
value
System.Nullable<System.Boolean>
The value to set.
Returns
CapabilitiesEditing.SetSupportsUpdateWithoutM(Nullable) Method
Asynchronously set the value of the SupportsUpdateWithoutM property after render.
public System.Threading.Tasks.Task SetSupportsUpdateWithoutM(System.Nullable<bool> value);
Parameters
value
System.Nullable<System.Boolean>
The value to set.
Returns
CapabilitiesEditing.SetSupportsUploadWithItemId(Nullable) Method
Asynchronously set the value of the SupportsUploadWithItemId property after render.
public System.Threading.Tasks.Task SetSupportsUploadWithItemId(System.Nullable<bool> value);
Parameters
value
System.Nullable<System.Boolean>
The value to set.