コード例 #1
0
ファイル: App.xaml.cs プロジェクト: sindrepm/FlickrBrowse
 private static async void ErrorHandler(object sender, ApiErrorOccuredEventArgs e)
 {
     await new MessageDialog("An error ocurred: " + e.ErrorMessage).ShowAsync();
 }
コード例 #2
0
ファイル: FlickrApi.cs プロジェクト: sindrepm/FlickrBrowse
 public void OnApiErrorOccured(ApiErrorOccuredEventArgs e)
 {
     var handler = ApiErrorOccured;
     if (handler != null)
         handler(this, e);
 }