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
int OnQueryCloseSolution(
    Object pUnkReserved,
    out int pfCancel
)
int OnQueryCloseSolution(
    [InAttribute] Object^ pUnkReserved, 
    [InAttribute] [OutAttribute] int% pfCancel
)
abstract OnQueryCloseSolution : 
        pUnkReserved:Object * 
        pfCancel:int byref -> int 
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

Microsoft.VisualStudio.Shell.Interop Namespace