0

電話アプリケーション (たとえば、http://www.deeptraining.com/webservices/weather.asmx?op=GetWeather ) にサービス参照を追加した後、エミュレーションの同期メソッド呼び出しに AutoResetEvent を使用しようとしました。ただし、WaitOne を呼び出した後は、メソッド Set が呼び出されることはありません。なんで?バグですか?

public partial class MainPage : PhoneApplicationPage
{
    private readonly AutoResetEvent _autoResetEvent = new AutoResetEvent(false);
    private string _result;

    // Constructor
    public MainPage()
    {
        InitializeComponent();
    }

    private void button1_Click(object sender, RoutedEventArgs e)
    {
        var weatherSoapClient = new WeatherSoapClient();

        weatherSoapClient.GetWeatherCompleted += weatherSoapClient_GetWeatherCompleted;
        weatherSoapClient.GetWeatherAsync("Pekin");

        _autoResetEvent.WaitOne(); // Program stop hire

        textBlock1.Text = _result;
    }

    void weatherSoapClient_GetWeatherCompleted(object sender, GetWeatherCompletedEventArgs e)
    {
        _result = e.Result;
        _autoResetEvent.Set(); // Never invoke! Why???
    }
}
4

1 に答える 1

0

WP7 では、HTTP 応答は UI スレッドで処理されます。UI スレッドをブロックすると、応答が処理されなくなります。

于 2011-09-30T13:27:06.183 に答える