EmailNotification Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
EmailNotification() |
Initializes a new instance of the EmailNotification class. |
EmailNotification(Nullable<Boolean>, Nullable<Boolean>, IList<String>) |
Initializes a new instance of the EmailNotification class. |
EmailNotification()
Initializes a new instance of the EmailNotification class.
public EmailNotification ();
Public Sub New ()
Applies to
EmailNotification(Nullable<Boolean>, Nullable<Boolean>, IList<String>)
Initializes a new instance of the EmailNotification class.
public EmailNotification (bool? sendToSubscriptionAdministrator = default, bool? sendToSubscriptionCoAdministrators = default, System.Collections.Generic.IList<string> customEmails = default);
new Microsoft.Azure.Management.Monitor.Models.EmailNotification : Nullable<bool> * Nullable<bool> * System.Collections.Generic.IList<string> -> Microsoft.Azure.Management.Monitor.Models.EmailNotification
Public Sub New (Optional sendToSubscriptionAdministrator As Nullable(Of Boolean) = Nothing, Optional sendToSubscriptionCoAdministrators As Nullable(Of Boolean) = Nothing, Optional customEmails As IList(Of String) = Nothing)
Parameters
a value indicating whether to send email to subscription administrator.
a value indicating whether to send email to subscription co-administrators.
the custom e-mails list. This value can be null or empty, in which case this attribute will be ignored.
Applies to
Azure SDK for .NET