@@ -273,7 +273,7 @@ namespace ReactiveUI
273
273
}
274
274
public interface IPropertyBindingHook
275
275
{
276
- bool ExecuteHook(object? source, object target, System.Func<ReactiveUI.IObservedChange<, >[]> getCurrentViewModelProperties, System.Func<ReactiveUI.IObservedChange<, >[]> getCurrentViewProperties, ReactiveUI.BindingDirection direction);
276
+ bool ExecuteHook(object? source, object target, System.Func<ReactiveUI.IObservedChange<object, object >[]> getCurrentViewModelProperties, System.Func<ReactiveUI.IObservedChange<object, object >[]> getCurrentViewProperties, ReactiveUI.BindingDirection direction);
277
277
}
278
278
public class IROObservableForProperty : ReactiveUI.ICreatesObservableForProperty, Splat.IEnableLogger
279
279
{
@@ -402,7 +402,7 @@ namespace ReactiveUI
402
402
public class Interaction<TInput, TOutput>
403
403
{
404
404
public Interaction(System.Reactive.Concurrency.IScheduler? handlerScheduler = null) { }
405
- protected System.Func<, >[] GetHandlers() { }
405
+ protected System.Func<ReactiveUI.InteractionContext<TInput, TOutput>, System.IObservable<System.Reactive.Unit> >[] GetHandlers() { }
406
406
public virtual System.IObservable<TOutput> Handle(TInput input) { }
407
407
public System.IDisposable RegisterHandler(System.Action<ReactiveUI.InteractionContext<TInput, TOutput>> handler) { }
408
408
public System.IDisposable RegisterHandler(System.Func<ReactiveUI.InteractionContext<TInput, TOutput>, System.Threading.Tasks.Task> handler) { }
@@ -745,7 +745,7 @@ namespace ReactiveUI
745
745
public static System.Type? ReallyFindType(string? type, bool throwOnFailure) { }
746
746
public static System.Linq.Expressions.Expression Rewrite(System.Linq.Expressions.Expression? expression) { }
747
747
public static void ThrowIfMethodsNotOverloaded(string callingTypeName, object targetObject, params string[] methodsToCheck) { }
748
- public static bool TryGetAllValuesForPropertyChain(out ReactiveUI.IObservedChange<, >[] changeValues, object? current, System.Collections.Generic.IEnumerable<System.Linq.Expressions.Expression> expressionChain) { }
748
+ public static bool TryGetAllValuesForPropertyChain(out ReactiveUI.IObservedChange<object, object? >[] changeValues, object? current, System.Collections.Generic.IEnumerable<System.Linq.Expressions.Expression> expressionChain) { }
749
749
public static bool TryGetValueForPropertyChain<TValue>(out TValue changeValue, object? current, System.Collections.Generic.IEnumerable<System.Linq.Expressions.Expression> expressionChain) { }
750
750
public static bool TrySetValueToPropertyChain<TValue>(object? target, System.Collections.Generic.IEnumerable<System.Linq.Expressions.Expression> expressionChain, TValue value, bool shouldThrow = true) { }
751
751
}
@@ -824,7 +824,7 @@ namespace ReactiveUI
824
824
public int GetAffinityForObjects(System.Type fromType, System.Type toType) { }
825
825
public bool TryConvert(object? from, System.Type toType, object? conversionHint, out object result) { }
826
826
}
827
- [System.AttributeUsage(System.AttributeTargets.Class | System.AttributeTargets.All )]
827
+ [System.AttributeUsage(System.AttributeTargets.Class)]
828
828
public sealed class SingleInstanceViewAttribute : System.Attribute
829
829
{
830
830
public SingleInstanceViewAttribute() { }
@@ -873,7 +873,7 @@ namespace ReactiveUI
873
873
public ReactiveUI.Interaction<TInput, TOutput>? Interaction { get; }
874
874
public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
875
875
}
876
- [System.AttributeUsage(System.AttributeTargets.Class | System.AttributeTargets.All )]
876
+ [System.AttributeUsage(System.AttributeTargets.Class)]
877
877
public sealed class ViewContractAttribute : System.Attribute
878
878
{
879
879
public ViewContractAttribute(string contract) { }
0 commit comments