Provides notification that an event has occurred.
Namespace: Microsoft.Clm.Shared
Assembly: Microsoft.Clm.Shared (in microsoft.clm.shared.dll)

Usage

Visual Basic
Dim instance As INotificationSink
Dim notification As Notification

instance.Notify(notification)

Syntax

Visual Basic
Sub Notify ( _
		notification As Notification _
)
C#
void Notify (
		Notification notification
)
C++
void Notify (
		Notification^ notification
)
J#
void Notify (
		Notification notification
)
JScript
function Notify (
		notification : Notification
)

Parameters

notification

A Notification object that contains information about the event that occurred.

Remarks

This method is invoked every time that an event occurs for which the notification handler has been registered. This is the entry point for the implementation to perform the required processing for the event.


Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows 2008 x64 Edition

Target Platforms

Windows XP SP3, Windows Vista SP1+, Windows 7, Windows Server 2008, Windows Server 2008 R2

See Also