EmailRecipient 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
EmailRecipient() |
Initializes an instance of the EmailRecipient class. |
EmailRecipient(String) |
Initializes an instance of the EmailRecipient class. |
EmailRecipient(String, String) |
Initializes an instance of the EmailRecipient class. |
EmailRecipient()
Initializes an instance of the EmailRecipient class.
public:
EmailRecipient();
EmailRecipient();
public EmailRecipient();
function EmailRecipient()
Public Sub New ()
Windows requirements
App capabilities |
email
emailSystem
|
See also
Applies to
EmailRecipient(String)
Initializes an instance of the EmailRecipient class.
public:
EmailRecipient(Platform::String ^ address);
EmailRecipient(winrt::hstring const& address);
public EmailRecipient(string address);
function EmailRecipient(address)
Public Sub New (address As String)
Parameters
- address
-
String
Platform::String
winrt::hstring
The address of the recipient.
Windows requirements
App capabilities |
email
emailSystem
|
See also
Applies to
EmailRecipient(String, String)
Initializes an instance of the EmailRecipient class.
public:
EmailRecipient(Platform::String ^ address, Platform::String ^ name);
EmailRecipient(winrt::hstring const& address, winrt::hstring const& name);
public EmailRecipient(string address, string name);
function EmailRecipient(address, name)
Public Sub New (address As String, name As String)
Parameters
- address
-
String
Platform::String
winrt::hstring
The address of the recipient.
- name
-
String
Platform::String
winrt::hstring
The name of the recipient.
Windows requirements
App capabilities |
email
emailSystem
|