IVsSolutionEvents2.OnAfterOpenSolution(Object, Int32) 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.
Notifies listening clients that the solution has been opened.
public:
int OnAfterOpenSolution(System::Object ^ pUnkReserved, int fNewSolution);
public:
int OnAfterOpenSolution(Platform::Object ^ pUnkReserved, int fNewSolution);
int OnAfterOpenSolution(winrt::Windows::Foundation::IInspectable const & pUnkReserved, int fNewSolution);
public int OnAfterOpenSolution (object pUnkReserved, int fNewSolution);
abstract member OnAfterOpenSolution : obj * int -> int
Public Function OnAfterOpenSolution (pUnkReserved As Object, fNewSolution As Integer) As Integer
Parameters
- pUnkReserved
- Object
[in] Reserved for future use.
- fNewSolution
- Int32
[in] true
if the solution is being created. false
if the solution was created previously or is being loaded.
Returns
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Implements
Remarks
COM Signature
From vsshell.idl:
HRESULT IVsSolutionEvents2::OnAfterOpenSolution(
[in] IUnknown *pUnkReserved,
[in] BOOL fNewSolution
);