public Task CloseAsync()
 {
     return(_controller.CloseAsync());
 }
 /// <summary>Begins an operation to close the ProgressDialog.</summary>
 /// <returns>A task representing the operation.</returns>
 public Task CloseAsync()
 {
     return(_wrapped.CloseAsync());
 }
Exemple #3
0
 /// <summary>Begins an operation to close the ProgressDialog.</summary>
 /// <returns>A task representing the operation.</returns>
 public Task CloseAsync() => _wrapped.CloseAsync();
Exemple #4
0
 public Task CloseAsync()
 {
     return(_dialogController.IsOpen ? _dialogController.CloseAsync() : Task.CompletedTask);
 }