IVsSolution.GetSolutionInfo(String, String, String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns the required solution file information.
public:
int GetSolutionInfo([Runtime::InteropServices::Out] System::String ^ % pbstrSolutionDirectory, [Runtime::InteropServices::Out] System::String ^ % pbstrSolutionFile, [Runtime::InteropServices::Out] System::String ^ % pbstrUserOptsFile);
int GetSolutionInfo([Runtime::InteropServices::Out] std::wstring const & & pbstrSolutionDirectory, [Runtime::InteropServices::Out] std::wstring const & & pbstrSolutionFile, [Runtime::InteropServices::Out] std::wstring const & & pbstrUserOptsFile);
public int GetSolutionInfo (out string pbstrSolutionDirectory, out string pbstrSolutionFile, out string pbstrUserOptsFile);
abstract member GetSolutionInfo : string * string * string -> int
Public Function GetSolutionInfo (ByRef pbstrSolutionDirectory As String, ByRef pbstrSolutionFile As String, ByRef pbstrUserOptsFile As String) As Integer
Parameters
- pbstrSolutionDirectory
- String
[out] Pointer to the solution directory.
- pbstrSolutionFile
- String
[out] Pointer to the solution file name.
- pbstrUserOptsFile
- String
[out] Pointer to the solutions options file name.
Returns
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From vsshell.idl:
HRESULT IVsSolution::GetSolutionInfo(
[out] BSTR *pbstrSolutionDirectory,
[out] BSTR *pbstrSolutionFile,
[out] BSTR *pbstrUserOptsFile
);