Exemplo n.º 1
0
 public static T Bind <T>(this IObservable <T> observable, ObservableSection section) => section.Bind(observable);
Exemplo n.º 2
0
 public static Action <ChangeEventArgs> Set(this IObserver <string> observer, ObservableSection section)
 {
     return(section.Set(observer));
 }
Exemplo n.º 3
0
 public static Action <ChangeEventArgs> Set <T>(this IObserver <T> observer, ObservableSection section, Func <string, T> converter)
 {
     return(section.Set(observer, converter));
 }