IVsSolutionEvents.OnQueryCloseSolution Method

Namespace:  Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)

Syntax

'Declaration
Function OnQueryCloseSolution ( _
    pUnkReserved As Object, _
    <OutAttribute> ByRef pfCancel As Integer _
) As Integer
'Usage
Dim instance As IVsSolutionEvents 
Dim pUnkReserved As Object 
Dim pfCancel As Integer 
Dim returnValue As Integer 

returnValue = instance.OnQueryCloseSolution(pUnkReserved, _
    pfCancel)
int OnQueryCloseSolution(
    Object pUnkReserved,
    out int pfCancel
)
int OnQueryCloseSolution(
    [InAttribute] Object^ pUnkReserved, 
    [InAttribute] [OutAttribute] int% pfCancel
)
function OnQueryCloseSolution(
    pUnkReserved : Object, 
    pfCancel : int
) : int

Parameters

  • pfCancel
    Type: System.Int32%

    [out] true if the client vetoed closing the solution. false if the client approved closing the solution.

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 vsshell.idl:

HRESULT IVsSolutionEvents::OnQueryCloseSolution(
   [in] IUnknown *pUnkReserved,
   [in,out] BOOL *pfCancel
);

.NET Framework Security

See Also

Reference

IVsSolutionEvents Interface

IVsSolutionEvents Members

Microsoft.VisualStudio.Shell.Interop Namespace