IVsSolution.QueryEditSolutionFile Method
Determines whether the solution file can be changed.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
Function QueryEditSolutionFile ( _
<OutAttribute> ByRef pdwEditResult As UInteger _
) As Integer
int QueryEditSolutionFile(
out uint pdwEditResult
)
int QueryEditSolutionFile(
[OutAttribute] unsigned int% pdwEditResult
)
abstract QueryEditSolutionFile :
pdwEditResult:uint32 byref -> int
function QueryEditSolutionFile(
pdwEditResult : uint
) : int
Parameters
pdwEditResult
Type: System.UInt32%[out] Pointer to QER_EditOK or QER_NoEdit_UserCanceled.
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 IVsSolution::QueryEditSolutionFile(
[out] DWORD *pdwEditResult
);
This method is a shortcut for the QueryEditFiles method. Instead of having to build an array of files, call IVsSolution.QueryEditSolutionFile and get a result indicating whether you can edit the solution file.
.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.