IVsSolutionEvents::OnAfterOpenSolution Method (Object^, Int32)

 

Notifies listening clients that the solution has been opened.

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

int OnAfterOpenSolution(
	Object^ pUnkReserved,
	int fNewSolution
)

Parameters

pUnkReserved
Type: System::Object^

[in] Reserved for future use.

fNewSolution
Type: System::Int32

[in] true if the solution is being created. false if the solution was created previously or is being loaded.

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 IVsSolutionEvents::OnAfterOpenSolution(
   [in] IUnknown *pUnkReserved,
   [in] BOOL fNewSolution
);
Return to top
Show: