IAdviseSink Interface
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Provides a managed definition of the IAdviseSink
interface.
public interface class IAdviseSink
[System.Runtime.InteropServices.InterfaceType(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)]
public interface IAdviseSink
[System.Runtime.InteropServices.InterfaceType(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)]
[System.Runtime.InteropServices.Guid("0000010F-0000-0000-C000-000000000046")]
public interface IAdviseSink
public interface IAdviseSink
[<System.Runtime.InteropServices.InterfaceType(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)>]
type IAdviseSink = interface
[<System.Runtime.InteropServices.InterfaceType(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)>]
[<System.Runtime.InteropServices.Guid("0000010F-0000-0000-C000-000000000046")>]
type IAdviseSink = interface
type IAdviseSink = interface
Public Interface IAdviseSink
- Attributes
Remarks
The IAdviseSink
interface enables containers and other objects to receive notifications of data changes, and view changes and compound-document changes occurring in objects of interest.
For more information, see IAdviseSink interface.
The common language runtime throws an exception when a COM method in native code returns an HRESULT. For more information, see How to: Map HRESULTs and Exceptions.
Methods
OnClose() |
Notifies all registered advisory sinks that the object has changed from the running state to the loaded state. This method is called by a server. |
OnDataChange(FORMATETC, STGMEDIUM) |
Notifies all data objects currently registered advisory sinks that data in the object has changed. |
OnRename(IMoniker) |
Notifies all registered advisory sinks that the object has been renamed. This method is called by a server. |
OnSave() |
Notifies all registered advisory sinks that the object has been saved. This method is called by a server. |
OnViewChange(Int32, Int32) |
Notifies an object's registered advisory sinks that its view has changed. This method is called by a server. |