EmailStore.CreateMailboxAsync Methode
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Überlädt
CreateMailboxAsync(String, String) |
Ermöglicht einer App das Erstellen eines E-Mail-Kontos aus einem Kontonamen und einer E-Mail-Adresse. |
CreateMailboxAsync(String, String, String) |
Ermöglicht einer App das Erstellen eines E-Mail-Kontos aus einem Kontonamen, einer E-Mail-Adresse und dem Benutzerdatenkonto, in dem sich das Postfach befindet. |
CreateMailboxAsync(String, String)
Ermöglicht einer App das Erstellen eines E-Mail-Kontos aus einem Kontonamen und einer E-Mail-Adresse.
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)
Parameter
- accountName
-
String
Platform::String
winrt::hstring
Der Kontoname.
- accountAddress
-
String
Platform::String
winrt::hstring
Die dem Konto zugeordnete E-Mail-Adresse.
Gibt zurück
Ein E-Mail-Postfach.
- Attribute
Windows-Anforderungen
App-Funktionen |
email
emailSystem
|
Weitere Informationen
Gilt für:
CreateMailboxAsync(String, String, String)
Ermöglicht einer App das Erstellen eines E-Mail-Kontos aus einem Kontonamen, einer E-Mail-Adresse und dem Benutzerdatenkonto, in dem sich das Postfach befindet.
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)
Parameter
- accountName
-
String
Platform::String
winrt::hstring
Der Kontoname.
- accountAddress
-
String
Platform::String
winrt::hstring
Die dem Konto zugeordnete E-Mail-Adresse.
- userDataAccountId
-
String
Platform::String
winrt::hstring
Der diesem Benutzer zugeordnete Benutzerdatenkontobezeichner.
Gibt zurück
Ein E-Mail-Postfach.
- Attribute
Windows-Anforderungen
App-Funktionen |
email
emailSystem
|