BADF00D / DisposableFixer

This is a Visual Studio Extension and NuGet package that should identify and fix problems as memleaks while using IDisposables.
Other
35 stars 7 forks source link

Add support for ReactiveProperty SetValidateNotifyError #135

Closed BADF00D closed 4 years ago

BADF00D commented 4 years ago

Prerequisites

Description

Source Code

namespace Reactive.Bindings
public ReactiveProperty<T> SetValidateNotifyError(Func<T, Task<string>> validator);
public ReactiveProperty<T> SetValidateNotifyError(Func<IObservable<T>, IObservable<string>> validator);
public ReactiveProperty<T> SetValidateNotifyError(Func<T, string> validator);
public ReactiveProperty<T> SetValidateNotifyError(Func<IObservable<T>, IObservable<IEnumerable>> validator);
public ReactiveProperty<T> SetValidateNotifyError(Func<T, Task<IEnumerable>> validator);
public ReactiveProperty<T> SetValidateNotifyError(Func<T, IEnumerable> validator);
public IDisposable Subscribe(IObserver<T> observer);

Screenshot