59

そのため、最初にこの特定の問題に関するスレッドを大量に読みましたが、まだ修正方法がわかりません。基本的に、私は websocket と通信し、受信したメッセージをリストビューにバインドされた監視可能なコレクションに保存しようとしています。ソケットから適切に応答が返されていることはわかっていますが、それを監視可能なコレクションに追加しようとすると、次のエラーが表示されます。

The application called an interface that was marshalled for a different thread. (Exception from HRESULT: 0x8001010E (RPC_E_WRONG_THREAD))

「ディスパッチ」に関する情報やその他の情報を読みましたが、非常に混乱しています。これが私のコードです:

public ObservableCollection<string> messageList  { get; set; }
private void MessageReceived(MessageWebSocket sender, MessageWebSocketMessageReceivedEventArgs args)
    {
        string read = "";
        try
        {
            using (DataReader reader = args.GetDataReader())
            {
                reader.UnicodeEncoding = Windows.Storage.Streams.UnicodeEncoding.Utf8;
                read = reader.ReadString(reader.UnconsumedBufferLength);
            }
        }
        catch (Exception ex) // For debugging
        {
            WebErrorStatus status = WebSocketError.GetStatus(ex.GetBaseException().HResult);
            // Add your specific error-handling code here.
        }


        if (read != "")
           messageList.Add(read); // this is where I get the error

    }

そして、これはバインディングです:

protected override async void OnNavigatedTo(NavigationEventArgs e)
{
    //await Authenticate();
    Gameboard.DataContext = Game.GameDetails.Singleton;
    lstHighScores.ItemsSource = sendInfo.messageList;
}

リストビューの監視可能なコレクションにバインドしている間にエラーを解消するにはどうすればよいですか?

4

4 に答える 4

7

交換してみる

messageList.Add(read); 

Dispatcher.Invoke((Action)(() => messageList.Add(read)));

Window クラスの外部から呼び出している場合は、次のことを試してください。

Application.Current.Dispatcher.Invoke((Action)(() => messageList.Add(read)));
于 2013-10-13T04:01:36.007 に答える