Jun 28, 2012 at 2:41 AM
Edited Jun 28, 2012 at 2:44 AM
|
Hi,
I'm trying to use UpdateStatus in a WP7 application and shortly after the method returns, I get a NotImplementedException from within LinqToTwitterWP.
This is how I'm using it:
var status = _context.UpdateStatus(tweet, true);
Whenever I use that, the tweet appears in the account perfectly fine and the Status object seems to be fine, but not long after the exception is thrown. (I actually pop up a messagebox and it only triggers after that closes)
A try/catch doesn't catch the exception. This itself is running on a thread but this still occurs if I run it on the UI thread.
Here is the call stack if that helps:
> LinqToTwitterWP.dll!Ionic.Zlib.GZipStream.Length.get() + 0x5 bytes
mscorlib.dll!System.IO.StreamReader.ReadToEnd() + 0x28 bytes
LinqToTwitterWP.dll!LinqToTwitter.TwitterExecute.GetTwitterResponse(System.Net.WebResponse resp) + 0x45 bytes
LinqToTwitterWP.dll!LinqToTwitter.TwitterExecute.ExecuteTwitter.AnonymousMethod__37(System.IAsyncResult ar) + 0x2e bytes
System.Windows.dll!System.Net.Browser.ClientHttpWebRequest.InvokeGetResponseCallback.AnonymousMethod__8(object state2) + 0x1b bytes
mscorlib.dll!System.Threading.ThreadPool.WorkItem.WaitCallback_Context(object state) + 0x18 bytes
mscorlib.dll!System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, object state) + 0x63 bytes
mscorlib.dll!System.Threading.ThreadPool.WorkItem.doWork(object o) + 0x47 bytes
mscorlib.dll!System.Threading.Timer.ring() + 0x70 bytes
Any help would be greatly appreciated as it seems I cannot even trap the exception and hide it.
Thanks,
Michael
|