Table of Contents

Interface IIncrementalData

Namespace
Northwoods.Go.Models
Assembly
Northwoods.GoDiagram.WinForms.dll

Interface for the output object of ToIncrementalData(ChangedEvent).

public interface IIncrementalData

Remarks

Any shared or cyclic references within the model data will be maintained on the data included on this output object.

Properties

InsertedLinkKeys

Collection of link keys added. Any key included will also be included in the ModifiedLinkData collection.

IEnumerable InsertedLinkKeys { get; }

Property Value

IEnumerable

InsertedNodeKeys

Collection of node keys added. Any key included will also be included in the ModifiedNodeData collection.

IEnumerable InsertedNodeKeys { get; }

Property Value

IEnumerable

ModifiedLinkData

Collection of link data objects modified.

IEnumerable ModifiedLinkData { get; }

Property Value

IEnumerable

ModifiedNodeData

Collection of node data objects modified.

IEnumerable ModifiedNodeData { get; }

Property Value

IEnumerable

RemovedLinkKeys

Collection of link keys deleted.

IEnumerable RemovedLinkKeys { get; }

Property Value

IEnumerable

RemovedNodeKeys

Collection of node keys deleted.

IEnumerable RemovedNodeKeys { get; }

Property Value

IEnumerable

SharedData

Object containing the modified SharedData.

object SharedData { get; }

Property Value

object