IVsAggregatableProject.InitializeForOuter 方法

调用由所有者,外部项的子类型,具有拥有的项目,内部项子类型,完成其初始化工作。

命名空间:  Microsoft.VisualStudio.Shell.Interop
程序集:  Microsoft.VisualStudio.Shell.Interop.8.0(在 Microsoft.VisualStudio.Shell.Interop.8.0.dll 中)

语法

声明
Function InitializeForOuter ( _
    pszFilename As String, _
    pszLocation As String, _
    pszName As String, _
    grfCreateFlags As UInteger, _
    ByRef iidProject As Guid, _
    <OutAttribute> ByRef ppvProject As IntPtr, _
    <OutAttribute> ByRef pfCanceled As Integer _
) As Integer
int InitializeForOuter(
    string pszFilename,
    string pszLocation,
    string pszName,
    uint grfCreateFlags,
    ref Guid iidProject,
    out IntPtr ppvProject,
    out int pfCanceled
)

参数

  • pszFilename
    类型:System.String
    [in] 项目该项目的文件名初始化。
  • pszLocation
    类型:System.String
    [out] 初始化的项目文件的位置。
  • pszName
    类型:System.String
    [in] 对包含名称为 null 终止的字符串的指针。
  • iidProject
    类型:System.Guid%
    [in] 返回的 ppvProject接口的标识符。
  • ppvProject
    类型:System.IntPtr%
    [out, iid_is(iidProject)] 为 iidProject指定的接口的指针。
  • pfCanceled
    类型:System.Int32%
    [out] 为 true 指示取消的标志的指针。

返回值

类型:System.Int32
如果方法成功,则返回 S_OK。如果失败,它会返回一个错误代码。

备注

COM 签名

从 vsshell80.idl:

HRESULT IVsAggregatableProject::InitializeForOuter(
   [in] LPCOLESTR pszFilename,
   [in] LPCOLESTR pszLocation,
   [in] LPCOLESTR pszName,
   [in] VSCREATEPROJFLAGS grfCreateFlags,
   [in] REFIID iidProject,
   [out, iid_is(iidProject)] void **ppvProject,
   [out] BOOL *pfCanceled
);

拥有项目的子类型应对其所有项目创建工作,类似于 CreateProject,此方法的实现。

.NET Framework 安全性

请参见

参考

IVsAggregatableProject 接口

Microsoft.VisualStudio.Shell.Interop 命名空间