layout: default title: DataCapability parent: Core Classes —

dymaptic.GeoBlazor.Core

dymaptic.GeoBlazor.Core.Components.Layers

DataCapability Class

Describes characteristics of the data in the layer.

public class DataCapability :
System.IEquatable<dymaptic.GeoBlazor.Core.Components.Layers.DataCapability>

Inheritance System.Object 🡒 DataCapability

Implements System.IEquatable<DataCapability>

Constructors

DataCapability(bool, bool, bool, bool) Constructor

Describes characteristics of the data in the layer.

public DataCapability(bool IsVersioned, bool SupportsAttachment, bool SupportsM, bool SupportsZ);

Parameters

IsVersioned System.Boolean

Indicates if the feature service is versioned.

SupportsAttachment System.Boolean

Indicates if the attachment is enabled on the layer.

SupportsM System.Boolean

Indicates if the features in the layer support m-values.

SupportsZ System.Boolean

Indicates if the features in the layer support z-values. See elevationInfo for details regarding placement and rendering of features with z-values in 3D SceneViews.

Properties

DataCapability.IsVersioned Property

Indicates if the feature service is versioned.

public bool IsVersioned { get; set; }

Property Value

System.Boolean

DataCapability.SupportsAttachment Property

Indicates if the attachment is enabled on the layer.

public bool SupportsAttachment { get; set; }

Property Value

System.Boolean

DataCapability.SupportsM Property

Indicates if the features in the layer support m-values.

public bool SupportsM { get; set; }

Property Value

System.Boolean

DataCapability.SupportsZ Property

Indicates if the features in the layer support z-values. See elevationInfo for details regarding placement and rendering of features with z-values in 3D SceneViews.

public bool SupportsZ { get; set; }

Property Value

System.Boolean