IVsSolution::OpenSolutionFile Method (UInt32, String^)

 

Opens a solution file of the type .sln, .dsw, or .vbg.

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

int OpenSolutionFile(
	unsigned int grfOpenOpts,
	String^ pszFilename
)

Parameters

grfOpenOpts
Type: System::UInt32

[in] Options for opening a solution file. For a list of grfOpenOpts values, see __VSSLNOPENOPTIONS.

pszFilename
Type: System::String^

[in] Pointer to the name of the solution file to open.

Return Value

Type: System::Int32

If the method succeeds, it returns S_OK. If it fails, it returns an error code.

From vsshell.idl:

HRESULT IVsSolution::OpenSolutionFile(
   [in] VSSLNOPENOPTIONS grfOpenOpts,
   [in] LPCOLESTR pszFilename
);
Return to top
Show: