Skip to content

Commit dfbdb24

Browse files
committed
Fix stack overflow in tests
1 parent 4305763 commit dfbdb24

3 files changed

Lines changed: 1216 additions & 311 deletions

File tree

src/ReactiveUI.Binding/Builder/IReactiveUIBindingBuilder.cs

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,27 @@ IReactiveUIBindingBuilder WithPlatformModule<T>(T module)
4444
/// <returns>The builder instance for chaining.</returns>
4545
IReactiveUIBindingBuilder WithRegistration(Action<IMutableDependencyResolver> configureAction);
4646

47+
/// <summary>
48+
/// Registers a typed binding converter.
49+
/// </summary>
50+
/// <param name="converter">The converter instance to register.</param>
51+
/// <returns>The builder instance for chaining.</returns>
52+
IReactiveUIBindingBuilder WithConverter(IBindingTypeConverter converter);
53+
54+
/// <summary>
55+
/// Registers a fallback binding converter.
56+
/// </summary>
57+
/// <param name="converter">The fallback converter instance to register.</param>
58+
/// <returns>The builder instance for chaining.</returns>
59+
IReactiveUIBindingBuilder WithFallbackConverter(IBindingFallbackConverter converter);
60+
61+
/// <summary>
62+
/// Registers a set-method binding converter.
63+
/// </summary>
64+
/// <param name="converter">The set-method converter instance to register.</param>
65+
/// <returns>The builder instance for chaining.</returns>
66+
IReactiveUIBindingBuilder WithSetMethodConverter(ISetMethodBindingConverter converter);
67+
4768
/// <summary>
4869
/// Builds the application and returns the configured instance.
4970
/// </summary>

0 commit comments

Comments
 (0)