Share via


Notification Constructors

Definition

Overloads

Notification()

Initializes a new instance of the Notification class.

Notification(Boolean, String, IList<NotificationTarget>)

Initializes a new instance of the Notification class.

Notification()

Initializes a new instance of the Notification class.

public Notification ();
Public Sub New ()

Applies to

Notification(Boolean, String, IList<NotificationTarget>)

Initializes a new instance of the Notification class.

public Notification (bool isEnabled, string notificationLevel, System.Collections.Generic.IList<Microsoft.Azure.Management.ServiceFabric.Models.NotificationTarget> notificationTargets);
new Microsoft.Azure.Management.ServiceFabric.Models.Notification : bool * string * System.Collections.Generic.IList<Microsoft.Azure.Management.ServiceFabric.Models.NotificationTarget> -> Microsoft.Azure.Management.ServiceFabric.Models.Notification
Public Sub New (isEnabled As Boolean, notificationLevel As String, notificationTargets As IList(Of NotificationTarget))

Parameters

isEnabled
Boolean

Indicates if the notification is enabled.

notificationLevel
String

The level of notification. Possible values include: 'Critical', 'All'

notificationTargets
IList<NotificationTarget>

List of targets that subscribe to the notification.

Applies to