IVsFileChangeEx Interface

 

Allows changes to be made to a file or directory.

Namespace:   Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)

[InterfaceTypeAttribute(1)]
[GuidAttribute("9BC72973-194A-4EA8-B4D5-AFB0B0D0DCB1")]
public interface IVsFileChangeEx

NameDescription
System_CAPS_pubmethodAdviseDirChange(String, Int32, IVsFileChangeEvents, UInt32)

Enables a client to receive notifications of changes to a directory.

System_CAPS_pubmethodAdviseFileChange(String, UInt32, IVsFileChangeEvents, UInt32)

Enables a client to receive notifications of changes to a file.

System_CAPS_pubmethodIgnoreFile(UInt32, String, Int32)

Ignores changes to a file.

System_CAPS_pubmethodSyncFile(String)

Forces change events to be sent. Used in conjunction with IgnoreFile to make file changes but not receive notification.

System_CAPS_pubmethodUnadviseDirChange(UInt32)

Disables a client from receiving notifications of changes to a directory.

System_CAPS_pubmethodUnadviseFileChange(UInt32)

Disables a client from receiving notifications of changes to a file.

Notes to Callers:

Called through the SVsFileChangeEx service. Call the IVsFileChangeEx interface when you want to listen to changes made to your files outside of your control.

Return to top
Show: