dymaptic.GeoBlazor.Core
dymaptic.GeoBlazor.Core.Components
CapabilitiesData Class
Describes characteristics of the data in the layer.
ArcGIS Maps SDK for JavaScript
public class CapabilitiesData : dymaptic.GeoBlazor.Core.Components.MapComponent
Inheritance System.Object 🡒 Microsoft.AspNetCore.Components.ComponentBase 🡒 MapComponent 🡒 CapabilitiesData
Constructors
CapabilitiesData() Constructor
Parameterless constructor for use as a Razor Component.
public CapabilitiesData();
CapabilitiesData(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 CapabilitiesData(System.Nullable<bool> isBranchVersioned=null, System.Nullable<bool> isVersioned=null, System.Nullable<bool> supportsAttachment=null, System.Nullable<bool> supportsM=null, System.Nullable<bool> supportsZ=null);
Parameters
isBranchVersioned
System.Nullable<System.Boolean>
isVersioned
System.Nullable<System.Boolean>
Indicates if the feature service is versioned.
ArcGIS Maps SDK for JavaScript
supportsAttachment
System.Nullable<System.Boolean>
Indicates if the attachment is enabled on the layer.
ArcGIS Maps SDK for JavaScript
supportsM
System.Nullable<System.Boolean>
Indicates if the features in the layer support m-values.
ArcGIS Maps SDK for JavaScript
supportsZ
System.Nullable<System.Boolean>
Indicates if the features in the layer support z-values.
ArcGIS Maps SDK for JavaScript
Properties
CapabilitiesData.IsBranchVersioned Property
public System.Nullable<bool> IsBranchVersioned { get; set; }
Property Value
System.Nullable<System.Boolean>
CapabilitiesData.IsVersioned Property
Indicates if the feature service is versioned.
ArcGIS Maps SDK for JavaScript
public System.Nullable<bool> IsVersioned { get; set; }
Property Value
System.Nullable<System.Boolean>
CapabilitiesData.SupportsAttachment Property
Indicates if the attachment is enabled on the layer.
ArcGIS Maps SDK for JavaScript
public System.Nullable<bool> SupportsAttachment { get; set; }
Property Value
System.Nullable<System.Boolean>
CapabilitiesData.SupportsM Property
Indicates if the features in the layer support m-values.
ArcGIS Maps SDK for JavaScript
public System.Nullable<bool> SupportsM { get; set; }
Property Value
System.Nullable<System.Boolean>
CapabilitiesData.SupportsZ Property
Indicates if the features in the layer support z-values.
ArcGIS Maps SDK for JavaScript
public System.Nullable<bool> SupportsZ { get; set; }
Property Value
System.Nullable<System.Boolean>
Methods
CapabilitiesData.GetIsBranchVersioned() Method
Asynchronously retrieve the current value of the IsBranchVersioned property.
public System.Threading.Tasks.Task<System.Nullable<bool>> GetIsBranchVersioned();
Returns
System.Threading.Tasks.Task<System.Nullable<System.Boolean>>
CapabilitiesData.GetIsVersioned() Method
Asynchronously retrieve the current value of the IsVersioned property.
public System.Threading.Tasks.Task<System.Nullable<bool>> GetIsVersioned();
Returns
System.Threading.Tasks.Task<System.Nullable<System.Boolean>>
CapabilitiesData.GetSupportsAttachment() Method
Asynchronously retrieve the current value of the SupportsAttachment property.
public System.Threading.Tasks.Task<System.Nullable<bool>> GetSupportsAttachment();
Returns
System.Threading.Tasks.Task<System.Nullable<System.Boolean>>
CapabilitiesData.GetSupportsM() Method
Asynchronously retrieve the current value of the SupportsM property.
public System.Threading.Tasks.Task<System.Nullable<bool>> GetSupportsM();
Returns
System.Threading.Tasks.Task<System.Nullable<System.Boolean>>
CapabilitiesData.GetSupportsZ() Method
Asynchronously retrieve the current value of the SupportsZ property.
public System.Threading.Tasks.Task<System.Nullable<bool>> GetSupportsZ();
Returns
System.Threading.Tasks.Task<System.Nullable<System.Boolean>>
CapabilitiesData.SetIsBranchVersioned(Nullable) Method
Asynchronously set the value of the IsBranchVersioned property after render.
public System.Threading.Tasks.Task SetIsBranchVersioned(System.Nullable<bool> value);
Parameters
value
System.Nullable<System.Boolean>
The value to set.
Returns
CapabilitiesData.SetIsVersioned(Nullable) Method
Asynchronously set the value of the IsVersioned property after render.
public System.Threading.Tasks.Task SetIsVersioned(System.Nullable<bool> value);
Parameters
value
System.Nullable<System.Boolean>
The value to set.
Returns
CapabilitiesData.SetSupportsAttachment(Nullable) Method
Asynchronously set the value of the SupportsAttachment property after render.
public System.Threading.Tasks.Task SetSupportsAttachment(System.Nullable<bool> value);
Parameters
value
System.Nullable<System.Boolean>
The value to set.
Returns
CapabilitiesData.SetSupportsM(Nullable) Method
Asynchronously set the value of the SupportsM property after render.
public System.Threading.Tasks.Task SetSupportsM(System.Nullable<bool> value);
Parameters
value
System.Nullable<System.Boolean>
The value to set.
Returns
CapabilitiesData.SetSupportsZ(Nullable) Method
Asynchronously set the value of the SupportsZ property after render.
public System.Threading.Tasks.Task SetSupportsZ(System.Nullable<bool> value);
Parameters
value
System.Nullable<System.Boolean>
The value to set.