Share via


ManagementGroup.GetNotificationEndpoint Method

Definition

Retrieves the specified notification endpoint.

Overloads

GetNotificationEndpoint(Guid)
Obsolete.

Retrieve notification endpoint by id.

GetNotificationEndpoint(String)
Obsolete.

Retrieve notification endpoint by name.

GetNotificationEndpoint(Guid)

Caution

Please use Notifications.GetNotificationEndpoint()

Retrieve notification endpoint by id.

public:
 Microsoft::EnterpriseManagement::Administration::NotificationEndpoint ^ GetNotificationEndpoint(Guid id);
[System.Obsolete("Please use Notifications.GetNotificationEndpoint()")]
public Microsoft.EnterpriseManagement.Administration.NotificationEndpoint GetNotificationEndpoint (Guid id);
member this.GetNotificationEndpoint : Guid -> Microsoft.EnterpriseManagement.Administration.NotificationEndpoint
Public Function GetNotificationEndpoint (id As Guid) As NotificationEndpoint

Parameters

id
Guid

The id of the endpoint.

Returns

A notification endpoint.

Attributes

Exceptions

No NotificationEndpoint with that id found.

Applies to

GetNotificationEndpoint(String)

Caution

Please use Notifications.GetNotificationEndpoint()

Retrieve notification endpoint by name.

public:
 Microsoft::EnterpriseManagement::Administration::NotificationEndpoint ^ GetNotificationEndpoint(System::String ^ name);
[System.Obsolete("Please use Notifications.GetNotificationEndpoint()")]
public Microsoft.EnterpriseManagement.Administration.NotificationEndpoint GetNotificationEndpoint (string name);
member this.GetNotificationEndpoint : string -> Microsoft.EnterpriseManagement.Administration.NotificationEndpoint
Public Function GetNotificationEndpoint (name As String) As NotificationEndpoint

Parameters

name
String

The name of the endpoint.

Returns

A notification endpoint.

Attributes

Exceptions

name is null

No NotificationEndpoint with that name found.

Applies to