Graph.Updating Event

Definition

Event implementation for BeforeUpdate. This is an event that can be listened on and cancel the changes to a graph. We don't use an implicit C# event here because we want to only listen on the TransactedDictionaryChanges if there are clients listening on us. (For perf reasons).

public:
 event EventHandler<Microsoft::VisualStudio::GraphModel::GraphUpdatedEventArgs ^> ^ Updating;
public event EventHandler<Microsoft.VisualStudio.GraphModel.GraphUpdatedEventArgs> Updating;
member this.Updating : EventHandler<Microsoft.VisualStudio.GraphModel.GraphUpdatedEventArgs> 
Public Event Updating As EventHandler(Of GraphUpdatedEventArgs) 

Event Type

Applies to