layout: default title: EditedFeatureResult parent: Core Classes —

dymaptic.GeoBlazor.Core

dymaptic.GeoBlazor.Core.Components.Layers

EditedFeatureResult Class

Results returned from the applyEdits method if the returnServiceEditsOption parameter is set to original-and-current-features. It contains features that were added, deleted or updated in different feature layers of a feature service as a result of editing a single feature that participates in a composite relationship in a database. The results are organized by each layer affected by the edit. For example, if a feature is deleted and it is the origin in a composite relationship, the edited features as a result of this deletion are returned.
The editedFeatures object returns full features including newly added features, the original features prior to delete, the original and current features for updates.
ArcGIS Maps SDK for JavaScript

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

Inheritance System.Object 🡒 EditedFeatureResult

Implements System.IEquatable<EditedFeatureResult>

Constructors

EditedFeatureResult(Nullable, EditedFeatures) Constructor

Results returned from the applyEdits method if the returnServiceEditsOption parameter is set to original-and-current-features. It contains features that were added, deleted or updated in different feature layers of a feature service as a result of editing a single feature that participates in a composite relationship in a database. The results are organized by each layer affected by the edit. For example, if a feature is deleted and it is the origin in a composite relationship, the edited features as a result of this deletion are returned.
The editedFeatures object returns full features including newly added features, the original features prior to delete, the original and current features for updates.
ArcGIS Maps SDK for JavaScript

public EditedFeatureResult(System.Nullable<long> LayerId, dymaptic.GeoBlazor.Core.Components.Layers.EditedFeatures? EditedFeatures);

Parameters

LayerId System.Nullable<System.Int64>

The layerId of the feature layer where features were edited.

EditedFeatures EditedFeatures

Object containing all edited features belonging to the specified layer.

Properties

EditedFeatureResult.EditedFeatures Property

Object containing all edited features belonging to the specified layer.

public dymaptic.GeoBlazor.Core.Components.Layers.EditedFeatures? EditedFeatures { get; set; }

Property Value

EditedFeatures

EditedFeatureResult.LayerId Property

The layerId of the feature layer where features were edited.

public System.Nullable<long> LayerId { get; set; }

Property Value

System.Nullable<System.Int64>