EmailStore.CreateMailboxAsync Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Overload
CreateMailboxAsync(String, String) |
Consente a un'app di creare un account di posta elettronica da un nome account e da un indirizzo di posta elettronica. |
CreateMailboxAsync(String, String, String) |
Consente a un'app di creare un account di posta elettronica da un nome account, un indirizzo di posta elettronica e l'account dati utente in cui risiederà la cassetta postale. |
CreateMailboxAsync(String, String)
Consente a un'app di creare un account di posta elettronica da un nome account e da un indirizzo di posta elettronica.
public:
virtual IAsyncOperation<EmailMailbox ^> ^ CreateMailboxAsync(Platform::String ^ accountName, Platform::String ^ accountAddress) = CreateMailboxAsync;
/// [Windows.Foundation.Metadata.Overload("CreateMailboxAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<EmailMailbox> CreateMailboxAsync(winrt::hstring const& accountName, winrt::hstring const& accountAddress);
[Windows.Foundation.Metadata.Overload("CreateMailboxAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<EmailMailbox> CreateMailboxAsync(string accountName, string accountAddress);
function createMailboxAsync(accountName, accountAddress)
Public Function CreateMailboxAsync (accountName As String, accountAddress As String) As IAsyncOperation(Of EmailMailbox)
Parametri
- accountName
-
String
Platform::String
winrt::hstring
Nome dell'account.
- accountAddress
-
String
Platform::String
winrt::hstring
Indirizzo di posta elettronica associato all'account.
Restituisce
Cassetta postale di posta elettronica.
- Attributi
Requisiti Windows
Funzionalità dell'app |
email
emailSystem
|
Vedi anche
Si applica a
CreateMailboxAsync(String, String, String)
Consente a un'app di creare un account di posta elettronica da un nome account, un indirizzo di posta elettronica e l'account dati utente in cui risiederà la cassetta postale.
public:
virtual IAsyncOperation<EmailMailbox ^> ^ CreateMailboxAsync(Platform::String ^ accountName, Platform::String ^ accountAddress, Platform::String ^ userDataAccountId) = CreateMailboxAsync;
/// [Windows.Foundation.Metadata.Overload("CreateMailboxInAccountAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<EmailMailbox> CreateMailboxAsync(winrt::hstring const& accountName, winrt::hstring const& accountAddress, winrt::hstring const& userDataAccountId);
[Windows.Foundation.Metadata.Overload("CreateMailboxInAccountAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<EmailMailbox> CreateMailboxAsync(string accountName, string accountAddress, string userDataAccountId);
function createMailboxAsync(accountName, accountAddress, userDataAccountId)
Public Function CreateMailboxAsync (accountName As String, accountAddress As String, userDataAccountId As String) As IAsyncOperation(Of EmailMailbox)
Parametri
- accountName
-
String
Platform::String
winrt::hstring
Nome dell'account.
- accountAddress
-
String
Platform::String
winrt::hstring
Indirizzo di posta elettronica associato all'account.
- userDataAccountId
-
String
Platform::String
winrt::hstring
Identificatore dell'account dati utente associato a questo utente.
Restituisce
Cassetta postale di posta elettronica.
- Attributi
Requisiti Windows
Funzionalità dell'app |
email
emailSystem
|