IVsFileChangeEx.SyncFile 方法

强制要发送的更改事件。 用于将 IgnoreFile 一起进行文件更改,但不接收通知。

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

语法

声明
Function SyncFile ( _
    pszMkDocument As String _
) As Integer
int SyncFile(
    string pszMkDocument
)

参数

  • pszMkDocument
    类型:System.String
    [in] 字符串文档的标记标识符形式对项目系统的。在文档中的文件,它总是文件的路径。

返回值

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

备注

COM 签名

从 vsshell.idl:

HRESULT IVsFileChangeEx::SyncFile(
   [in] LPCOLESTR pszMkDocument
);

,如果您对文件进行更改,并且不希望接收更改通知,请使用 IgnoreFile 方法结合使用此方法。 下面的示例演示了这种情况:

   pFC->IgnoreFile(dwConnect, "MyFile.cpp", TRUE);
   SaveFile("MyFile.cpp");
   pFC->SyncFile("MyFile.cpp")
   // Forces the change events to be sent. This ensures the event will not be sent (asynchronously) to you after you stop ignoring the file.
   pFC->IgnoreFile(dwConnect, "MyFile.cpp", FALSE)
   // This indicates you are listening to the events again.

.NET Framework 安全性

请参见

参考

IVsFileChangeEx 接口

Microsoft.VisualStudio.Shell.Interop 命名空间