EmailReceiver 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
EmailReceiver() |
Initializes a new instance of the EmailReceiver class. |
EmailReceiver(String, String, Nullable<Boolean>, Nullable<ReceiverStatus>) |
Initializes a new instance of the EmailReceiver class. |
EmailReceiver()
Initializes a new instance of the EmailReceiver class.
public EmailReceiver ();
Public Sub New ()
Applies to
EmailReceiver(String, String, Nullable<Boolean>, Nullable<ReceiverStatus>)
Initializes a new instance of the EmailReceiver class.
public EmailReceiver (string name, string emailAddress, bool? useCommonAlertSchema = default, Microsoft.Azure.Management.Monitor.Models.ReceiverStatus? status = default);
new Microsoft.Azure.Management.Monitor.Models.EmailReceiver : string * string * Nullable<bool> * Nullable<Microsoft.Azure.Management.Monitor.Models.ReceiverStatus> -> Microsoft.Azure.Management.Monitor.Models.EmailReceiver
Public Sub New (name As String, emailAddress As String, Optional useCommonAlertSchema As Nullable(Of Boolean) = Nothing, Optional status As Nullable(Of ReceiverStatus) = Nothing)
Parameters
- name
- String
The name of the email receiver. Names must be unique across all receivers within an action group.
- emailAddress
- String
The email address of this receiver.
- status
- Nullable<ReceiverStatus>
The receiver status of the e-mail. Possible values include: 'NotSpecified', 'Enabled', 'Disabled'
Applies to
Azure SDK for .NET