dymaptic.GeoBlazor.Core
dymaptic.GeoBlazor.Core.Components
CapabilitiesOperations Class
Describes operations that can be performed on features in the layer.
ArcGIS Maps SDK for JavaScript
public class CapabilitiesOperations : dymaptic.GeoBlazor.Core.Components.MapComponent
Inheritance System.Object 🡒 Microsoft.AspNetCore.Components.ComponentBase 🡒 MapComponent 🡒 CapabilitiesOperations
Constructors
CapabilitiesOperations() Constructor
Parameterless constructor for use as a Razor Component.
public CapabilitiesOperations();
CapabilitiesOperations(Nullable, 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 CapabilitiesOperations(System.Nullable<bool> supportsAdd=null, System.Nullable<bool> supportsCalculate=null, System.Nullable<bool> supportsDelete=null, System.Nullable<bool> supportsEditing=null, System.Nullable<bool> supportsQuery=null, System.Nullable<bool> supportsQueryAttachments=null, System.Nullable<bool> supportsQueryTopFeatures=null, System.Nullable<bool> supportsResizeAttachments=null, System.Nullable<bool> supportsUpdate=null, System.Nullable<bool> supportsValidateSql=null);
Parameters
supportsAdd
System.Nullable<System.Boolean>
Indicates if new features can be added to the layer.
ArcGIS Maps SDK for JavaScript
supportsCalculate
System.Nullable<System.Boolean>
Indicates if values of one or more field values in the layer can be updated.
ArcGIS Maps SDK for JavaScript
supportsDelete
System.Nullable<System.Boolean>
Indicates if features can be deleted from the layer.
ArcGIS Maps SDK for JavaScript
supportsEditing
System.Nullable<System.Boolean>
Indicates if features in the layer can be edited.
ArcGIS Maps SDK for JavaScript
supportsQuery
System.Nullable<System.Boolean>
Indicates if features in the layer can be queried.
ArcGIS Maps SDK for JavaScript
supportsQueryAttachments
System.Nullable<System.Boolean>
Indicates if the layer supports REST API queryAttachments operation.
ArcGIS Maps SDK for JavaScript
supportsQueryTopFeatures
System.Nullable<System.Boolean>
Indicates if the layer supports REST API queryTopFeatures operation.
ArcGIS Maps SDK for JavaScript
supportsResizeAttachments
System.Nullable<System.Boolean>
ArcGIS Maps SDK for JavaScript
supportsUpdate
System.Nullable<System.Boolean>
Indicates if features in the layer can be updated.
ArcGIS Maps SDK for JavaScript
supportsValidateSql
System.Nullable<System.Boolean>
Indicates if the layer supports a SQL-92 expression or where clause.
ArcGIS Maps SDK for JavaScript
Properties
CapabilitiesOperations.SupportsAdd Property
Indicates if new features can be added to the layer.
ArcGIS Maps SDK for JavaScript
public System.Nullable<bool> SupportsAdd { get; set; }
Property Value
System.Nullable<System.Boolean>
CapabilitiesOperations.SupportsCalculate Property
Indicates if values of one or more field values in the layer can be updated.
ArcGIS Maps SDK for JavaScript
public System.Nullable<bool> SupportsCalculate { get; set; }
Property Value
System.Nullable<System.Boolean>
CapabilitiesOperations.SupportsDelete Property
Indicates if features can be deleted from the layer.
ArcGIS Maps SDK for JavaScript
public System.Nullable<bool> SupportsDelete { get; set; }
Property Value
System.Nullable<System.Boolean>
CapabilitiesOperations.SupportsEditing Property
Indicates if features in the layer can be edited.
ArcGIS Maps SDK for JavaScript
public System.Nullable<bool> SupportsEditing { get; set; }
Property Value
System.Nullable<System.Boolean>
CapabilitiesOperations.SupportsQuery Property
Indicates if features in the layer can be queried.
ArcGIS Maps SDK for JavaScript
public System.Nullable<bool> SupportsQuery { get; set; }
Property Value
System.Nullable<System.Boolean>
CapabilitiesOperations.SupportsQueryAttachments Property
Indicates if the layer supports REST API queryAttachments operation.
ArcGIS Maps SDK for JavaScript
public System.Nullable<bool> SupportsQueryAttachments { get; set; }
Property Value
System.Nullable<System.Boolean>
CapabilitiesOperations.SupportsQueryTopFeatures Property
Indicates if the layer supports REST API queryTopFeatures operation.
ArcGIS Maps SDK for JavaScript
public System.Nullable<bool> SupportsQueryTopFeatures { get; set; }
Property Value
System.Nullable<System.Boolean>
CapabilitiesOperations.SupportsResizeAttachments Property
public System.Nullable<bool> SupportsResizeAttachments { get; set; }
Property Value
System.Nullable<System.Boolean>
CapabilitiesOperations.SupportsUpdate Property
Indicates if features in the layer can be updated.
ArcGIS Maps SDK for JavaScript
public System.Nullable<bool> SupportsUpdate { get; set; }
Property Value
System.Nullable<System.Boolean>
CapabilitiesOperations.SupportsValidateSql Property
Indicates if the layer supports a SQL-92 expression or where clause.
ArcGIS Maps SDK for JavaScript
public System.Nullable<bool> SupportsValidateSql { get; set; }
Property Value
System.Nullable<System.Boolean>
Methods
CapabilitiesOperations.GetSupportsAdd() Method
Asynchronously retrieve the current value of the SupportsAdd property.
public System.Threading.Tasks.Task<System.Nullable<bool>> GetSupportsAdd();
Returns
System.Threading.Tasks.Task<System.Nullable<System.Boolean>>
CapabilitiesOperations.GetSupportsCalculate() Method
Asynchronously retrieve the current value of the SupportsCalculate property.
public System.Threading.Tasks.Task<System.Nullable<bool>> GetSupportsCalculate();
Returns
System.Threading.Tasks.Task<System.Nullable<System.Boolean>>
CapabilitiesOperations.GetSupportsDelete() Method
Asynchronously retrieve the current value of the SupportsDelete property.
public System.Threading.Tasks.Task<System.Nullable<bool>> GetSupportsDelete();
Returns
System.Threading.Tasks.Task<System.Nullable<System.Boolean>>
CapabilitiesOperations.GetSupportsEditing() Method
Asynchronously retrieve the current value of the SupportsEditing property.
public System.Threading.Tasks.Task<System.Nullable<bool>> GetSupportsEditing();
Returns
System.Threading.Tasks.Task<System.Nullable<System.Boolean>>
CapabilitiesOperations.GetSupportsQuery() Method
Asynchronously retrieve the current value of the SupportsQuery property.
public System.Threading.Tasks.Task<System.Nullable<bool>> GetSupportsQuery();
Returns
System.Threading.Tasks.Task<System.Nullable<System.Boolean>>
CapabilitiesOperations.GetSupportsQueryAttachments() Method
Asynchronously retrieve the current value of the SupportsQueryAttachments property.
public System.Threading.Tasks.Task<System.Nullable<bool>> GetSupportsQueryAttachments();
Returns
System.Threading.Tasks.Task<System.Nullable<System.Boolean>>
CapabilitiesOperations.GetSupportsQueryTopFeatures() Method
Asynchronously retrieve the current value of the SupportsQueryTopFeatures property.
public System.Threading.Tasks.Task<System.Nullable<bool>> GetSupportsQueryTopFeatures();
Returns
System.Threading.Tasks.Task<System.Nullable<System.Boolean>>
CapabilitiesOperations.GetSupportsResizeAttachments() Method
Asynchronously retrieve the current value of the SupportsResizeAttachments property.
public System.Threading.Tasks.Task<System.Nullable<bool>> GetSupportsResizeAttachments();
Returns
System.Threading.Tasks.Task<System.Nullable<System.Boolean>>
CapabilitiesOperations.GetSupportsUpdate() Method
Asynchronously retrieve the current value of the SupportsUpdate property.
public System.Threading.Tasks.Task<System.Nullable<bool>> GetSupportsUpdate();
Returns
System.Threading.Tasks.Task<System.Nullable<System.Boolean>>
CapabilitiesOperations.GetSupportsValidateSql() Method
Asynchronously retrieve the current value of the SupportsValidateSql property.
public System.Threading.Tasks.Task<System.Nullable<bool>> GetSupportsValidateSql();
Returns
System.Threading.Tasks.Task<System.Nullable<System.Boolean>>
CapabilitiesOperations.SetSupportsAdd(Nullable) Method
Asynchronously set the value of the SupportsAdd property after render.
public System.Threading.Tasks.Task SetSupportsAdd(System.Nullable<bool> value);
Parameters
value
System.Nullable<System.Boolean>
The value to set.
Returns
CapabilitiesOperations.SetSupportsCalculate(Nullable) Method
Asynchronously set the value of the SupportsCalculate property after render.
public System.Threading.Tasks.Task SetSupportsCalculate(System.Nullable<bool> value);
Parameters
value
System.Nullable<System.Boolean>
The value to set.
Returns
CapabilitiesOperations.SetSupportsDelete(Nullable) Method
Asynchronously set the value of the SupportsDelete property after render.
public System.Threading.Tasks.Task SetSupportsDelete(System.Nullable<bool> value);
Parameters
value
System.Nullable<System.Boolean>
The value to set.
Returns
CapabilitiesOperations.SetSupportsEditing(Nullable) Method
Asynchronously set the value of the SupportsEditing property after render.
public System.Threading.Tasks.Task SetSupportsEditing(System.Nullable<bool> value);
Parameters
value
System.Nullable<System.Boolean>
The value to set.
Returns
CapabilitiesOperations.SetSupportsQuery(Nullable) Method
Asynchronously set the value of the SupportsQuery property after render.
public System.Threading.Tasks.Task SetSupportsQuery(System.Nullable<bool> value);
Parameters
value
System.Nullable<System.Boolean>
The value to set.
Returns
CapabilitiesOperations.SetSupportsQueryAttachments(Nullable) Method
Asynchronously set the value of the SupportsQueryAttachments property after render.
public System.Threading.Tasks.Task SetSupportsQueryAttachments(System.Nullable<bool> value);
Parameters
value
System.Nullable<System.Boolean>
The value to set.
Returns
CapabilitiesOperations.SetSupportsQueryTopFeatures(Nullable) Method
Asynchronously set the value of the SupportsQueryTopFeatures property after render.
public System.Threading.Tasks.Task SetSupportsQueryTopFeatures(System.Nullable<bool> value);
Parameters
value
System.Nullable<System.Boolean>
The value to set.
Returns
CapabilitiesOperations.SetSupportsResizeAttachments(Nullable) Method
Asynchronously set the value of the SupportsResizeAttachments property after render.
public System.Threading.Tasks.Task SetSupportsResizeAttachments(System.Nullable<bool> value);
Parameters
value
System.Nullable<System.Boolean>
The value to set.
Returns
CapabilitiesOperations.SetSupportsUpdate(Nullable) Method
Asynchronously set the value of the SupportsUpdate property after render.
public System.Threading.Tasks.Task SetSupportsUpdate(System.Nullable<bool> value);
Parameters
value
System.Nullable<System.Boolean>
The value to set.
Returns
CapabilitiesOperations.SetSupportsValidateSql(Nullable) Method
Asynchronously set the value of the SupportsValidateSql property after render.
public System.Threading.Tasks.Task SetSupportsValidateSql(System.Nullable<bool> value);
Parameters
value
System.Nullable<System.Boolean>
The value to set.