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.
Establishes client notification of solution events.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)
Syntax
'Declaration
Function AdviseUpdateSolutionEvents3 ( _
pIVsUpdateSolutionEvents3 As IVsUpdateSolutionEvents3, _
<OutAttribute> ByRef pdwCookie As UInteger _
) As Integer
int AdviseUpdateSolutionEvents3(
IVsUpdateSolutionEvents3 pIVsUpdateSolutionEvents3,
out uint pdwCookie
)
int AdviseUpdateSolutionEvents3(
[InAttribute] IVsUpdateSolutionEvents3^ pIVsUpdateSolutionEvents3,
[OutAttribute] unsigned int% pdwCookie
)
abstract AdviseUpdateSolutionEvents3 :
pIVsUpdateSolutionEvents3:IVsUpdateSolutionEvents3 *
pdwCookie:uint32 byref -> int
function AdviseUpdateSolutionEvents3(
pIVsUpdateSolutionEvents3 : IVsUpdateSolutionEvents3,
pdwCookie : uint
) : int
Parameters
- pIVsUpdateSolutionEvents3
Type: Microsoft.VisualStudio.Shell.Interop.IVsUpdateSolutionEvents3
[in] Pointer to the IVsSolutionEvents3 interface on the object requesting notification of solution events.
- pdwCookie
Type: System.UInt32%
[out] Pointer to a double word containing the cookie.
Return Value
Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From vsshell80.idl:
HRESULT IVsSolutionBuildManager3::AdviseUpdateSolutionEvents3(
[in] IVsUpdateSolutionEvents3 *pIVsUpdateSolutionEvents3,
[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.