IVsRunningDocTableEvents3 Interface

 

Implements methods that fire in response to changes to documents in the Running Document Table (RDT).

Namespace:   Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)

[InterfaceTypeAttribute(1)]
[GuidAttribute("376ED667-F576-458F-B991-2CFD3EBC7B08")]
public interface IVsRunningDocTableEvents3 : IVsRunningDocTableEvents2

NameDescription
System_CAPS_pubmethodOnAfterAttributeChange(UInt32, UInt32)

Called after an attribute of a document in the Running Document Table (RDT) changes.

System_CAPS_pubmethodOnAfterAttributeChangeEx(UInt32, UInt32, IVsHierarchy, UInt32, String, IVsHierarchy, UInt32, String)

Called after a document attribute is changed. This is an advanced version of the OnAfterAttributeChange method.

System_CAPS_pubmethodOnAfterDocumentWindowHide(UInt32, IVsWindowFrame)

Called after a document window is hidden.

System_CAPS_pubmethodOnAfterFirstDocumentLock(UInt32, UInt32, UInt32, UInt32)

Called after application of the first lock of the specified type to a document in the Running Document Table (RDT).

System_CAPS_pubmethodOnAfterSave(UInt32)

Called after a document in the Running Document Table (RDT) is saved.

System_CAPS_pubmethodOnBeforeDocumentWindowShow(UInt32, Int32, IVsWindowFrame)

Called before displaying a document window.

System_CAPS_pubmethodOnBeforeLastDocumentUnlock(UInt32, UInt32, UInt32, UInt32)

Called before releasing the last lock of the specified type on the specified document in the Running Document Table (RDT).

System_CAPS_pubmethodOnBeforeSave(UInt32)

Called before saving a document.

The IVsRunningDocTableEvents3 interface is specified in a call to the AdviseRunningDocTableEvents method in the IVsRunningDocumentTable interface.

The interface's methods use a cookie representing the client requesting the notification. The cookie is used in the call to the UnadviseRunningDocTableEvents method when the package no longer wants to listen to RDT events.

To receive notice before the application of the first lock on a document (giving you a chance to load the document), implement the IVsRunningDocTableEvents4 interface.

Notes to Implementers:

The package implements the interface to receive events relating to the current state of documents in the RDT. Note that this interface derives from the IVsRunningDocTableEvents2 interface and must implement all of that interface's methods as well.

The cookie parameter passed to all of the methods in this interface represents the document affected by an event. This cookie is the same value returned from FindAndLockDocument or RegisterAndLockDocument methods in the IVsRunningDocumentTable interface.

Notes to Callers:

The environment calls this interface on the occurrence of specific events. In particular, the environment calls this interface before saving a document.

Return to top
Show: