IVsRunningDocTableEvents2 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)
Syntax
'Declaración
<GuidAttribute("15C7826F-443C-406D-98F8-55F6260669EC")> _
<InterfaceTypeAttribute()> _
Public Interface IVsRunningDocTableEvents2 _
Inherits IVsRunningDocTableEvents
'Uso
Dim instance As IVsRunningDocTableEvents2
[GuidAttribute("15C7826F-443C-406D-98F8-55F6260669EC")]
[InterfaceTypeAttribute()]
public interface IVsRunningDocTableEvents2 : IVsRunningDocTableEvents
[GuidAttribute(L"15C7826F-443C-406D-98F8-55F6260669EC")]
[InterfaceTypeAttribute()]
public interface class IVsRunningDocTableEvents2 : IVsRunningDocTableEvents
[<GuidAttribute("15C7826F-443C-406D-98F8-55F6260669EC")>]
[<InterfaceTypeAttribute()>]
type IVsRunningDocTableEvents2 =
interface
interface IVsRunningDocTableEvents
end
public interface IVsRunningDocTableEvents2 extends IVsRunningDocTableEvents
Remarks
The IVsRunningDocTableEvents2 interface is specified in a call to the AdviseRunningDocTableEvents method in the IVsRunningDocumentTable interface.
The interface's methods use a cookie to represent the client requesting the notification. You use the cookie in the call to the UnadviseRunningDocTableEvents method when the package no longer wants to listen to RDT events.
You may want to implement additional interfaces for richer event notification:
To receive notice before a document is saved, implement the IVsRunningDocTableEvents3 interface.
To receive notice before the first lock on a document is applied (giving you a chance to load the document), implement the IVsRunningDocTableEvents4 interface.
Notes to Implementers
Implement this interface in your packages to receive events about the state of documents in the RDT. Note that this interface derives from the IVsRunningDocTableEvents interface and must implement all methods on that interface as well.
The cookie parameter passed to all of the methods in this interface represents the document affected by a particular event. This cookie is the same value returned from the FindAndLockDocument or RegisterAndLockDocument methods in the IVsRunningDocumentTable interface.
Notes to Callers
The environment calls this interface when specific events have occurred. This interface provides access to more information than IVsRunningDocTableEvents about when a document is renamed.