Twitterizer Webサイトのコード例を使用して、次のコードを使用してTwitterにツイートを投稿しようとしています。
Dim asyncResult As IAsyncResult = TwitterStatusAsync.Update(
tokens.Tokens,
Tweet.Text,
Nothing,
Timeout,
Function(updateResponse)
If (updateResponse.Result = RequestResult.Success) Then
MessageBox.Show("Tweet Posted")
Else
MessageBox.Show("Error: " & updateResponse.ErrorMessage)
End If
End Function)
しかし、私はこの例外を受け取っています:
System.NotSupportedExceptionはユーザーコードによって処理されませんでしたMessage=指定されたメソッドはサポートされていません。StackTrace:System.Func
4.BeginInvoke(T1 arg1, T2 arg2, T3 arg3, AsyncCallback callback, Object object) at Twitterizer.AsyncUtility.ExecuteAsyncMethod[TResponse,TProperties](OAuthTokens tokens, String s, TProperties properties, TimeSpan timeout, Func
4 methodToCall、Actionで1 function) at Twitterizer.TwitterStatusAsync.Update(OAuthTokens tokens, String text, StatusUpdateOptions options, TimeSpan timeout, Action
1関数)at myFire_Silverlight._twitter.Status_Post(mf_object_tweet Tweet)at myFire_Silverlight.TweetDialog.OKButton_Click(Object sender、RoutedEventArgs e)at System.Windows.Controls.Primitives.ButtonBase.OnClick()at System.Windows.Controls.Button.OnClick ()at System.Windows.Controls.Primitives.ButtonBase.OnMouseLeftButtonUp(MouseButtonEventArgs e)at System.Windows.Controls.Control.OnMouseLeftButtonUp(Control ctrl、EventArgs e)at MS.Internal.JoltHelper.FireEvent(IntPtr unmanagedObj、IntPtr unmanagedObjArgs、 Int32 argsTypeIndex、Int32 actualArgsTypeIndex、String eventName、UInt32フラグ)InnerException:
私は何が間違っているのですか?