Пример #1
0
 public static ITwitterException GenerateTwitterException(WebException webException, string url)
 {
     return(CurrentThreadExceptionHandler.GenerateTwitterException(webException, url));
 }
Пример #2
0
 public static void ClearLoggedExceptions()
 {
     CurrentThreadExceptionHandler.ClearLoggedExceptions();
 }
Пример #3
0
 public static void AddTwitterException(ITwitterException twitterException)
 {
     CurrentThreadExceptionHandler.AddTwitterException(twitterException);
 }
Пример #4
0
 public static TwitterException AddWebException(WebException webException, string url)
 {
     return(CurrentThreadExceptionHandler.AddWebException(webException, url));
 }
Пример #5
0
 /// <summary>
 /// Ask for the ExceptionHandler to handle an Exception.
 /// </summary>
 public static TwitterException AddWebException(WebException webException, ITwitterQuery twitterQuery)
 {
     return(CurrentThreadExceptionHandler.AddWebException(webException, twitterQuery));
 }
Пример #6
0
 /// <summary>
 /// Returns a TwitterException from a WebException.
 /// </summary>
 public static ITwitterException GenerateTwitterException(WebException webException, ITwitterQuery twitterQuery)
 {
     return(CurrentThreadExceptionHandler.GenerateTwitterException(webException, twitterQuery));
 }