Share via


ModelEventArgs.Changes Property

Gets a list of all changes.

Namespace:  Microsoft.Data.Schema.SchemaModel
Assembly:  Microsoft.Data.Schema (in Microsoft.Data.Schema.dll)

Syntax

'Declaration
Public ReadOnly Property Changes As IList(Of Tuple(Of IModelElement, ModelEventType))
public IList<Tuple<IModelElement, ModelEventType>> Changes { get; }
public:
property IList<Tuple<IModelElement^, ModelEventType>^>^ Changes {
    IList<Tuple<IModelElement^, ModelEventType>^>^ get ();
}
member Changes : IList<Tuple<IModelElement, ModelEventType>>
function get Changes () : IList<Tuple<IModelElement, ModelEventType>>

Property Value

Type: System.Collections.Generic.IList<Tuple<IModelElement, ModelEventType>>
A list of elements and change types.

Remarks

An entry occurs for every element that participates in the event—either add, update, or delete. The order of elements in the list is arbitrary.

.NET Framework Security

See Also

Reference

ModelEventArgs Class

Microsoft.Data.Schema.SchemaModel Namespace

IModelElement

ModelEventType