RunningDocumentTable.Advise Method
Enables the client to receive events about changes to the Running Document Table (RDT).
This API is not CLS-compliant.
Namespace: Microsoft.VisualStudio.Shell
Assemblies: Microsoft.VisualStudio.Shell (in Microsoft.VisualStudio.Shell.dll)
Microsoft.VisualStudio.Shell.10.0 (in Microsoft.VisualStudio.Shell.10.0.dll)
Microsoft.VisualStudio.Shell.9.0 (in Microsoft.VisualStudio.Shell.9.0.dll)
Syntax
'宣告
<CLSCompliantAttribute(False)> _
Public Function Advise ( _
sink As IVsRunningDocTableEvents _
) As UInteger
'用途
Dim instance As RunningDocumentTable
Dim sink As IVsRunningDocTableEvents
Dim returnValue As UInteger
returnValue = instance.Advise(sink)
[CLSCompliantAttribute(false)]
public uint Advise(
IVsRunningDocTableEvents sink
)
[CLSCompliantAttribute(false)]
public:
unsigned int Advise(
IVsRunningDocTableEvents^ sink
)
[<CLSCompliantAttribute(false)>]
member Advise :
sink:IVsRunningDocTableEvents -> uint32
public function Advise(
sink : IVsRunningDocTableEvents
) : uint
Parameters
- sink
Type: Microsoft.VisualStudio.Shell.Interop.IVsRunningDocTableEvents
[in] An IVsRunningDocTableEvents object representing an entity to be called for various running document table events.
Return Value
Type: System.UInt32
A cookie associated with the given IVsRunningDocTableEvents object. If an error occurs, this method throws an exception.
Remarks
This method forwards the call to the AdviseRunningDocTableEvents method in the IVsRunningDocumentTable interface. The returned cookie can be passed to the Unadvise method to remove the IVsRunningDocTableEvents object from the list of entities to be notified.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.