WebAccountProviderAddAccountOperation 類別
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
表示新增帳戶作業。
public ref class WebAccountProviderAddAccountOperation sealed
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 65536)]
/// [Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
class WebAccountProviderAddAccountOperation final
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 65536)]
[Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
public sealed class WebAccountProviderAddAccountOperation
Public NotInheritable Class WebAccountProviderAddAccountOperation
- 繼承
- 屬性
- 實作
Windows 需求
裝置系列 |
Windows 10 (已於 10.0.10240.0 引進)
|
API contract |
Windows.Foundation.UniversalApiContract (已於 v1.0 引進)
|
範例
下列示範如何處理新增 Web 帳戶作業:
WebAccountProviderAddAccountOperation operation;
protected override void OnNavigatedTo(NavigationEventArgs e)
{
operation = (WebAccountProviderAddAccountOperation)e.Parameter;
base.OnNavigatedTo(e);
}
private async void DoneAddAccountButton_Click(object sender, RoutedEventArgs e)
{
Dictionary<string, string> properties = new Dictionary<string, string>();
properties.Add(this.PropKeyTextBox.Text, this.PropValueTextBox.Text);
WebAccount newAccount = await WebAccountManager.AddWebAccountAsync(this.AccountIdTextBox.Text,
this.UserNameTextBox.Text, properties);
}
屬性
Kind |
取得 Web 帳戶提供者作業的種類。 |
方法
ReportCompleted() |
通知啟動的應用程式作業已順利完成。 |