IVsOwnedProjectFactory.InitializeForOwner 方法

调用项所有者调用拥有的项目中执行所有其初始化。

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

语法

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

参数

  • pszFilename
    类型:System.String
    [in] 为 null 指针已停止包含文件名的字符串。
  • pszLocation
    类型:System.String
    [in] 为 null 指针已停止包含位置的字符串。
  • pszName
    类型:System.String
    [in] 为 null 指针已停止包含名称的字符串。
  • iidProject
    类型:System.Guid%
    [in] 指定 iidProject。
  • cookie
    类型:System.UInt32
    [in] 标识拥有的项目的 Cookie。
  • pfCanceled
    类型:System.Int32%
    [out] 对取消的标志指示的指针。

返回值

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

备注

COM 签名

从 vsshell.idl:

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

调用由所有者调用拥有的项目中执行所有其初始化。 该拥有的项目应对其所有 CreateProject 工作示。 cookie 参数为拥有的项。 PreCreateForOwner传递的 cookie。 这使得拥有的项目创建其项目对象 cookie:在 CreateProject的其他参数。

.NET Framework 安全性

请参见

参考

IVsOwnedProjectFactory 接口

Microsoft.VisualStudio.Shell.Interop 命名空间