ShowAlertAsync() static private method

static private ShowAlertAsync ( this page, ErrorBucket errors ) : IAsyncOperation
page this
errors ErrorBucket
return IAsyncOperation
示例#1
0
 Task IViewModelHost.ShowAlertAsync(ErrorBucket errors)
 {
     return(PageExtender.ShowAlertAsync(this, errors).AsTask());
 }
示例#2
0
 Task IViewModelHost.ShowAlertAsync(string message)
 {
     return(PageExtender.ShowAlertAsync(this, message).AsTask());
 }