Rx.NET:this.WhenAnyValue(x => x.Foo)在构造函数中抛出ArgumentNullException

时间:2015-09-03 07:49:33

标签: c# system.reactive reactiveui

我有一个课程,我正在做类似以下的课程:

public class Foo : ReactiveObject
{
    // The constructor that sets up a subscription
    public Foo()
    {
        this.WhenAnyValue(foo => foo.Bar)
            .Where(bar => bar != null)
            .Subscribe(bar => ...);
    }

    // Reactive property
    private IBar _bar;
    public IBar Bar
    {
        get { return _bar; }
        set { this.RaiseAndSetIfChanged(ref _bar, value); }
    }
}

现在,在构造实例时,我收到以下错误:

System.ArgumentNullException: Value cannot be null.
Parameter name: dispatcher
   at System.Reactive.Concurrency.CoreDispatcherScheduler..ctor(CoreDispatcher dispatcher)}

为了确保我没有对我的实例做一些愚蠢的事情,我将部分订阅分开,仅用于测试:

var observable = this.WhenAnyValue(foo => foo.Bar); // <-- throws already on this line!
var nonulls = observable.Where(bar => bar != null);
var subscription = nonulls.Subscribe(bar => ...);

我无法找到一种方法来更好地了解这里出了什么问题。如何获取有关此错误的更多信息?我该如何解决?

1 个答案:

答案 0 :(得分:1)

为了完整性&#39;我将从评论中回答:

在您开始观察属性时,似乎尚未创建CoreDispatcherScheduler。根据我的经验,当您在构造函数中使用observable时,这些事情往往会发生,然后可能会在应用程序生命周期的早期使用。

因此,将实例化移动到OnLaunched事件而不是应用程序启动可能会有所帮助。在可能的情况下,我尝试使用Init()函数而不是构造函数来连接我的observable。