EmailRecipient EmailRecipient EmailRecipient EmailRecipient Class

Definition

Represents an email recipient.

public : sealed class EmailRecipient : IEmailRecipientpublic sealed class EmailRecipient : IEmailRecipientPublic NotInheritable Class EmailRecipient Implements IEmailRecipient// You can use this class in JavaScript.
Attributes
Windows 10 requirements
Device family
Windows 10 (introduced v10.0.10240.0)
API contract
Windows.Foundation.UniversalApiContract (introduced v1)

Constructors

EmailRecipient() EmailRecipient() EmailRecipient() EmailRecipient()

Initializes an instance of the EmailRecipient class.

public : EmailRecipient()public EmailRecipient()Public Sub New()// You can use this method in JavaScript.
See Also

EmailRecipient(String) EmailRecipient(String) EmailRecipient(String) EmailRecipient(String)

Initializes an instance of the EmailRecipient class.

public : EmailRecipient(PlatForm::String address)public EmailRecipient(String address)Public Sub New(address As String)// You can use this method in JavaScript.
Parameters
address
PlatForm::String String String String

The address of the recipient.

See Also

EmailRecipient(String, String) EmailRecipient(String, String) EmailRecipient(String, String) EmailRecipient(String, String)

Initializes an instance of the EmailRecipient class.

public : EmailRecipient(PlatForm::String address, PlatForm::String name)public EmailRecipient(String address, String name)Public Sub New(address As String, name As String)// You can use this method in JavaScript.
Parameters
address
PlatForm::String String String String

The address of the recipient.

name
PlatForm::String String String String

The name of the recipient.

See Also

Properties

Address Address Address Address

Gets or sets the address of the email recipient.

public : PlatForm::String Address { get; set; }public string Address { get; set; }Public ReadWrite Property Address As string// You can use this property in JavaScript.
Value
PlatForm::String string string string

The address of the email recipient.

Name Name Name Name

Gets or sets the name of the email recipient.

public : PlatForm::String Name { get; set; }public string Name { get; set; }Public ReadWrite Property Name As string// You can use this property in JavaScript.
Value
PlatForm::String string string string

The name of the email recipient.