The abstract base class for a communication endpoint to which notifications can be sent. Namespace: Microsoft.EnterpriseManagement.Administration
Assembly: Microsoft.EnterpriseManagement.OperationsManager (in microsoft.enterprisemanagement.operationsmanager.dll)

Usage

Visual Basic
Dim instance As NotificationEndpoint

Syntax

Visual Basic
<SerializableAttribute> _
Public MustInherit Class NotificationEndpoint
		Inherits CreatableMonitoringBaseWithId
C#
[SerializableAttribute] 
public abstract class NotificationEndpoint : CreatableMonitoringBaseWithId
C++
[SerializableAttribute] 
public ref class NotificationEndpoint abstract : public CreatableMonitoringBaseWithId
J#
/** @attribute SerializableAttribute() */ 
public abstract class NotificationEndpoint extends CreatableMonitoringBaseWithId
JScript
SerializableAttribute 
public abstract class NotificationEndpoint extends CreatableMonitoringBaseWithId

Remarks

To create a notification endpoint, initialize one of the following derived classes:

  • SipNotificationEndpoint - An endpoint for sending notifications using the Session Initiation Protocol (SIP). This protocol is supported by various instant messaging systems.

  • SmsNotificationEndpoint - An endpoint for sending notifications using the Short Message Service (SMS). This service is supported by various mobile phones and other handheld devices.

  • SmtpNotificationEndpoint - An endpoint for sending notifications using the Simple Mail Transport Protocol (SMTP). This endpoint allows you to send notifications to e-mail addresses.

Note
After setting NotificationEndpoint property values, call the Update method to update the endpoint in the operational database.

Inheritance Hierarchy

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,Windows Vista,Windows XP

See Also