Thank you! That would sound right, but even when I set ExceptionHandler.SwallowWebExceptions = false; it still ends up in that code (in the:
public TwitterException AddWebException(WebException webException, string url)
being raised from: catch (AggregateException aex)
{
var webException = aex.InnerException as WebException;
if (webException != null)
{
if (webResponse != null)
{
webResponse.Dispose();
}
if (httpWebRequest != null)
{
httpWebRequest.Abort();
}
if (httpWebRequest != null)
{
___var twitterException = _exceptionHandler.AddWebException(webException, httpWebRequest.RequestUri.AbsoluteUri);___
throw twitterException;
}
throw webException;
}
My code basically does a search with 1000 => which will call SearchTweetsRecursively...