Struct ModelUpdate
Denotes the update of a model element
public record struct ModelUpdate : IEquatable<ModelUpdate>
- Implements
- Inherited Members
Constructors
ModelUpdate(object, IEnumerable<string>, bool)
Denotes the update of a model element
public ModelUpdate(object UpdatedElement, IEnumerable<string> UpdatedFeatures, bool UpdateReferences)
Parameters
UpdatedElementobjecta semantic model element that was updated outside the textual representation
UpdatedFeaturesIEnumerable<string>a collection of changed features or null to update the entire rule application
UpdateReferencesbooltrue, if references need to be updated, otherwise False
Properties
UpdateReferences
true, if references need to be updated, otherwise False
public bool UpdateReferences { readonly get; set; }
Property Value
UpdatedElement
a semantic model element that was updated outside the textual representation
public object UpdatedElement { readonly get; set; }
Property Value
UpdatedFeatures
a collection of changed features or null to update the entire rule application
public IEnumerable<string> UpdatedFeatures { readonly get; set; }