[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]Sends a notification from the Service Manager server that contains a message. Namespace: Microsoft.EnterpriseManagement
Assembly: Microsoft.EnterpriseManagement.Core (in microsoft.enterprisemanagement.core.dll)

Usage

Visual Basic
Dim instance As INotificationManagement
Dim toAddresses As IDictionary(Of NotificationRecipientType, IList(Of String))
Dim message As NotificationMessage
Dim fromAddress As String

instance.Send(toAddresses, message, fromAddress)

Syntax

Visual Basic
Sub Send ( _
		toAddresses As IDictionary(Of NotificationRecipientType, IList(Of String)), _
		message As NotificationMessage, _
		fromAddress As String _
)
C#
void Send (
		IDictionary<NotificationRecipientType,IList<string>> toAddresses,
		NotificationMessage message,
		string fromAddress
)
C++
void Send (
		IDictionary<NotificationRecipientType, IList<String^>^>^ toAddresses, 
		NotificationMessage^ message, 
		String^ fromAddress
)
J#
void Send (
		IDictionary<NotificationRecipientType,IList<String>> toAddresses, 
		NotificationMessage message, 
		String fromAddress
)
JScript
function Send (
		toAddresses : IDictionary<NotificationRecipientType,IList<String>>, 
		message : NotificationMessage, 
		fromAddress : String
)

Parameters

toAddresses

Type: String}}

The address for the notification recipient.

message

Type: NotificationMessage

The notification message.

fromAddress

Type: String

The address of the notification sender.

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 Server 2008, Windows Vista, Windows Server 2003, and Windows XP

Target Platforms

Windows Server 2008,Windows Server 2003

See Also