IVsRunningDocTableEvents.OnAfterSave 方法

调用保存在运行的文档之后文档表 (RDT)。

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

语法

声明
Function OnAfterSave ( _
    docCookie As UInteger _
) As Integer
int OnAfterSave(
    uint docCookie
)

参数

  • docCookie
    类型:System.UInt32
    [in] 表示已保存的文档的抽象值。

返回值

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

备注

如果您希望该项目或解决方案当前是否正在关闭,您在收到 OnAfterSave 通知后,需要监视在 IVsSolutionEvents3 接口的事件。请执行这些步骤:

  1. 查询 SVsSolution 服务访问 IVsSolution 接口。

  2. IVsSolution 接口的 IVsSolution2 接口。

  3. 接下来,调用 AdviseSolutionEvents 通过在 IVsSolutionEvents3 接口的实现。

COM 签名

从 vsshell.idl:

HRESULT IVsRunningDocTableEvents::OnAfterSave(
   [in] VSCOOKIE docCookie
);

.NET Framework 安全性

请参见

参考

IVsRunningDocTableEvents 接口

Microsoft.VisualStudio.Shell.Interop 命名空间