コード例 #1
0
 IAccount IAccountCreationActionsSync.CreateAccount(string givenName, string surname, string email, string password, object customData)
 => AccountCreationActionsShared.CreateAccount(this.GetInternalSyncDataStore(), this.Accounts.Href, givenName, surname, email, password, customData);
コード例 #2
0
 IAccount IAccountCreationActionsSync.CreateAccount(IAccount account)
 => AccountCreationActionsShared.CreateAccount(this.GetInternalSyncDataStore(), this.Accounts.Href, account);
コード例 #3
0
 Task <IAccount> IAccountCreationActions.CreateAccountAsync(string givenName, string surname, string email, string password, CancellationToken cancellationToken)
 => AccountCreationActionsShared.CreateAccountAsync(this.GetInternalAsyncDataStore(), this.Accounts.Href, givenName, surname, email, password, null, cancellationToken);
コード例 #4
0
 IAccount IAccountCreationActionsSync.CreateAccount(IAccount account, Action <AccountCreationOptionsBuilder> creationOptionsAction)
 => AccountCreationActionsShared.CreateAccount(this.GetInternalSyncDataStore(), this.Accounts.Href, account, creationOptionsAction);
コード例 #5
0
 Task <IAccount> IAccountCreationActions.CreateAccountAsync(IAccount account, CancellationToken cancellationToken)
 => AccountCreationActionsShared.CreateAccountAsync(this.GetInternalAsyncDataStore(), this.Accounts.Href, account, cancellationToken);