Applies To: Operations Manager for System Center 2012
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)
Inheritance Hierarchy
System.Object
  Microsoft.EnterpriseManagement.Common.MonitoringBase
    Microsoft.EnterpriseManagement.Common.CreatableMonitoringBaseWithId
      Microsoft.EnterpriseManagement.Administration.NotificationEndpoint
        Microsoft.EnterpriseManagement.Administration.SipNotificationEndpoint
        Microsoft.EnterpriseManagement.Administration.SmsNotificationEndpoint
        Microsoft.EnterpriseManagement.Administration.SmtpNotificationEndpoint
Syntax
[SerializableAttribute]
public abstract class NotificationEndpoint : CreatableMonitoringBaseWithId
[SerializableAttribute]
public ref class NotificationEndpoint abstract : CreatableMonitoringBaseWithId
[<AbstractClass>]
[<SerializableAttribute>]
type NotificationEndpoint = 
    class
        inherit CreatableMonitoringBaseWithId
    end
<SerializableAttribute>
Public MustInherit Class NotificationEndpoint
    Inherits CreatableMonitoringBaseWithId
Properties
| Name | Description | |
|---|---|---|
| .jpeg) | Description | Gets or sets the description of this notification endpoint. | 
| .jpeg) | DisplayName | Gets or sets a descriptive name for the endpoint. | 
| .jpeg) | Id | (Inherited from CreatableMonitoringBaseWithId.) | 
| .jpeg) | ManagementGroup | The connection management group connection used by this object. | 
| .jpeg) | ManagementGroupId | (Inherited from MonitoringBase.) | 
| .jpeg) | Name | Gets or sets the name of the endpoint. | 
| .jpeg) | RecipientProtocol | Gets or sets the name of the protocol used to send notifications to this endpoint. | 
Methods
| Name | Description | |
|---|---|---|
| .jpeg) | Equals(Object) | (Inherited from CreatableMonitoringBaseWithId.) | 
| .jpeg) | Finalize() | (Inherited from Object.) | 
| .jpeg) | GetHashCode() | (Inherited from CreatableMonitoringBaseWithId.) | 
| .jpeg) | GetType() | (Inherited from Object.) | 
| .jpeg) | MemberwiseClone() | (Inherited from Object.) | 
| .jpeg) | Reconnect(EnterpriseManagementGroup) | Reconnects to the specified management group after the object has been disconnected.(Overrides MonitoringBase.Reconnect(EnterpriseManagementGroup).) | 
| .jpeg) | ToString() | (Inherited from MonitoringBase.) | 
| .jpeg) | Update() | Updates the operational database with the modified property values. | 
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.
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.
See Also
Microsoft.EnterpriseManagement.Administration Namespace
Return to top