XmlModel.BufferReloaded Event

 

Occurs when the XDocument has been completely reloaded.

Namespace:   Microsoft.VisualStudio.XmlEditor
Assembly:  Microsoft.VisualStudio.XmlEditor (in Microsoft.VisualStudio.XmlEditor.dll)

Syntax

public abstract event EventHandler BufferReloaded
public:
event EventHandler^ BufferReloaded {
    virtual void add(EventHandler^ value) abstract;
    virtual void remove(EventHandler^ value) abstract;
}
abstract BufferReloaded : IEvent<EventHandler,
    EventArgs>
Public MustOverride Event BufferReloaded As EventHandler

Remarks

This event occurs if the changes made in the buffer could not be parsed incrementally, so a completely new XDocument was created. When this happens, all your pointers to the old XDocument nodes must be updated.

See Also

XmlModel Class
Microsoft.VisualStudio.XmlEditor Namespace

Return to top