You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`ICoreRegistration` gives the framework an understanding of the following concerns for ReactiveMarbles internals. We provide a simple builder and extension method to register it against the `ServiceLocator`.
6
+
7
+
```csharp
8
+
ServiceLocator
9
+
.Current()
10
+
.AddCoreRegistrations(() =>
11
+
CoreRegistrationBuilder
12
+
.Create()
13
+
.WithMainThreadScheduler(Scheduler.Default)
14
+
.WithTaskPoolScheduler(TaskPoolScheduler.Default)
15
+
.WithExceptionHandler(newDebugExceptionHandler())
16
+
.Build());
17
+
```
18
+
19
+
## AsValue
20
+
21
+
`AsValue` allows you to bind an `IObservable<T>` to a property that produces a property changed event.
0 commit comments