NotificationTarget Constructors

Definition

Overloads

NotificationTarget()

Initializes a new instance of the NotificationTarget class.

NotificationTarget(String, IList<String>)

Initializes a new instance of the NotificationTarget class.

NotificationTarget()

Initializes a new instance of the NotificationTarget class.

public NotificationTarget ();
Public Sub New ()

Applies to

NotificationTarget(String, IList<String>)

Initializes a new instance of the NotificationTarget class.

public NotificationTarget (string notificationChannel, System.Collections.Generic.IList<string> receivers);
new Microsoft.Azure.Management.ServiceFabric.Models.NotificationTarget : string * System.Collections.Generic.IList<string> -> Microsoft.Azure.Management.ServiceFabric.Models.NotificationTarget
Public Sub New (notificationChannel As String, receivers As IList(Of String))

Parameters

notificationChannel
String

The notification channel indicates the type of receivers subscribed to the notification, either user or subscription. Possible values include: 'EmailUser', 'EmailSubscription'

receivers
IList<String>

List of targets that subscribe to the notification.

Applies to