IVsSolutionEvents2.OnAfterLoadProject Method
Notifies listening clients that the project has been loaded.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'宣言
Function OnAfterLoadProject ( _
pStubHierarchy As IVsHierarchy, _
pRealHierarchy As IVsHierarchy _
) As Integer
'使用
Dim instance As IVsSolutionEvents2
Dim pStubHierarchy As IVsHierarchy
Dim pRealHierarchy As IVsHierarchy
Dim returnValue As Integer
returnValue = instance.OnAfterLoadProject(pStubHierarchy, _
pRealHierarchy)
int OnAfterLoadProject(
IVsHierarchy pStubHierarchy,
IVsHierarchy pRealHierarchy
)
int OnAfterLoadProject(
[InAttribute] IVsHierarchy^ pStubHierarchy,
[InAttribute] IVsHierarchy^ pRealHierarchy
)
function OnAfterLoadProject(
pStubHierarchy : IVsHierarchy,
pRealHierarchy : IVsHierarchy
) : int
Parameters
pStubHierarchy
Type: Microsoft.VisualStudio.Shell.Interop.IVsHierarchy[in] Pointer to the IVsHierarchy interface of the placeholder hierarchy for the unloaded project.
pRealHierarchy
Type: Microsoft.VisualStudio.Shell.Interop.IVsHierarchy[in] Pointer to the IVsHierarchy interface of the project that was loaded.
Return Value
Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Implements
IVsSolutionEvents.OnAfterLoadProject(IVsHierarchy, IVsHierarchy)
Remarks
COM Signature
From vsshell.idl:
HRESULT IVsSolutionEvents2::OnAfterLoadProject(
[in] IVsHierarchy *pStubHierarchy,
[in] IVsHierarchy *pRealHierarchy
);
Permissions
- 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.