Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Registers an IVsLiteTreeEvents interface and thus adds an events listener to the listener list.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
Function AdviseTreeEvents ( _
pEventSink As IVsLiteTreeEvents, _
<OutAttribute> ByRef pdwCookie As UInteger _
) As Integer
int AdviseTreeEvents(
IVsLiteTreeEvents pEventSink,
out uint pdwCookie
)
int AdviseTreeEvents(
[InAttribute] IVsLiteTreeEvents^ pEventSink,
[OutAttribute] unsigned int% pdwCookie
)
abstract AdviseTreeEvents :
pEventSink:IVsLiteTreeEvents *
pdwCookie:uint32 byref -> int
function AdviseTreeEvents(
pEventSink : IVsLiteTreeEvents,
pdwCookie : uint
) : int
Parameters
- pEventSink
Type: Microsoft.VisualStudio.Shell.Interop.IVsLiteTreeEvents
[in] Pointer to events interface, IVsLiteTreeEvents.
- pdwCookie
Type: System.UInt32%
[out] Cookie used to identify this particular instance of the events interface in calling UnadviseTreeEvents.
Return Value
Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
[C++]
From vsshell.idl:
HRESULT IVsLiteTree::AdviseTreeEvents(
[in] IVsLiteTreeEvents *pEventSink,
[out] VSCOOKIE *pdwCookie
);
.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.