ShowAlertAsync() 정적인 개인적인 메소드

static private ShowAlertAsync ( this page, ErrorBucket errors ) : IAsyncOperation
page this
errors ErrorBucket
리턴 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());
 }