Table of Contents

Struct ModelUpdate

Namespace
NMF.AnyText
Assembly
NMF.AnyText.Core.dll

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

UpdatedElement object

a semantic model element that was updated outside the textual representation

UpdatedFeatures IEnumerable<string>

a collection of changed features or null to update the entire rule application

UpdateReferences bool

true, 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

bool

UpdatedElement

a semantic model element that was updated outside the textual representation

public object UpdatedElement { readonly get; set; }

Property Value

object

UpdatedFeatures

a collection of changed features or null to update the entire rule application

public IEnumerable<string> UpdatedFeatures { readonly get; set; }

Property Value

IEnumerable<string>