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() |
通知正在激活的应用操作已成功完成。 |