IVsSolutionEvents3.OnQueryCloseSolution Method
Queries listening clients as to whether the solution can be closed.
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
pUnkReserved
Type: Object[in] Reserved for future use.
pfCancel
Type: Int32%[out] true if the client vetoed closing the solution. false if the client approved closing the solution.
Return Value
Type: Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From vsshell.idl:
HRESULT IVsSolutionEvents3::OnQueryCloseSolution(
[in] IUnknown *pUnkReserved,
[in,out] BOOL *pfCancel
);
.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.