IVsSolution2::AdviseSolutionEvents Method (IVsSolutionEvents^, UInt32)
Establishes client notification of solution events.
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
int AdviseSolutionEvents( IVsSolutionEvents^ pSink, [OutAttribute] unsigned int% pdwCookie )
Parameters
- pSink
-
Type:
Microsoft.VisualStudio.Shell.Interop::IVsSolutionEvents^
[in] Pointer to the IVsSolutionEvents interface on the object requesting notification of solution events.
- pdwCookie
-
Type:
System::UInt32
[out] Unique identifier for the referenced event sink. This value is required to unadvise the event sink using the UnadviseUpdateSolutionEvents method.
Return Value
Type: System::Int32If the method succeeds, it returns S_OK. If it fails, it returns an error code.
From vsshell.idl:
HRESULT IVsSolution2::AdviseSolutionEvents( [in] IVsSolutionEvents *pSink, [out] VSCOOKIE *pdwCookie );
Use this method to set up notification of solution events on a particular object by synchronizing the solution to the solution events. For example, the Output window contains some panes that provide information about the solution. These panes are closed when the solution is closed. Thus, when the solution close event is received, then the Output window clears the Build pane and the Debug Output pane. For another example, see OnAfterSave.