ReactiveProperty.Create() method¶
Defined in
Type: ReactivePropertyReactiveUI.Reactive
Assembly: ReactiveUI.Reactive.dll
Applies to
net10.0, net10.0-maccatalyst26.0, net10.0-desktop1.0, net10.0-browserwasm1.0, net10.0-tvos26.0, net10.0-windows10.0.19041, net10.0-macos26.0, net10.0-ios26.0, net10.0-android36.0, net9.0, net9.0-tvos18.0, net9.0-macos15.0, net9.0-maccatalyst18.0, net9.0-windows10.0.19041, net9.0-ios18.0, net9.0-desktop1.0, net8.0, net8.0-windows10.0.19041, net8.0-ios18.0, net8.0-maccatalyst18.0, net8.0-macos15.0, net8.0-tvos18.0, net8.0-ios17.5, net8.0-maccatalyst17.5, net8.0-macos14.5, netstandard2.1, net481, net462, net471
Overloads¶
- 1.
public static ReactiveProperty<T> Create() - 2.
public static ReactiveProperty<T> Create(T? initialValue) - 3.
public static ReactiveProperty<T> Create(T? initialValue, bool skipCurrentValueOnSubscribe, bool allowDuplicateValues) - 4.
public static ReactiveProperty<T> Create(T? initialValue, IScheduler scheduler, bool skipCurrentValueOnSubscribe, bool allowDuplicateValues)
1. Overload¶
public static ReactiveProperty<T> Create()
Summary: Creates a new instance of ReactiveProperty without requiring RequiresUnreferencedCode attributes. Uses RxSchedulers.TaskpoolScheduler as the default scheduler.
Returns: ReactiveProperty
2. Overload¶
public static ReactiveProperty<T> Create(T? initialValue)
Summary: Creates a new instance of ReactiveProperty with an initial value without requiring RequiresUnreferencedCode attributes. Uses RxSchedulers.TaskpoolScheduler as the default scheduler.
Parameters
| Name | Type | Description |
|---|---|---|
initialValue | T? | The initial value. |
Returns: ReactiveProperty
3. Overload¶
public static ReactiveProperty<T> Create(T? initialValue, bool skipCurrentValueOnSubscribe, bool allowDuplicateValues)
Summary: Creates a new instance of ReactiveProperty with configuration options without requiring RequiresUnreferencedCode attributes. Uses RxSchedulers.TaskpoolScheduler as the default scheduler.
Parameters
| Name | Type | Description |
|---|---|---|
initialValue | T? | The initial value. |
skipCurrentValueOnSubscribe | bool | if set to true [skip current value on subscribe]. |
allowDuplicateValues | bool | if set to true [allow duplicate concurrent values]. |
Returns: ReactiveProperty
4. Overload¶
public static ReactiveProperty<T> Create(T? initialValue, IScheduler scheduler, bool skipCurrentValueOnSubscribe, bool allowDuplicateValues)
Summary: Creates a new instance of ReactiveProperty with a custom scheduler without requiring RequiresUnreferencedCode attributes.
Parameters
| Name | Type | Description |
|---|---|---|
initialValue | T? | The initial value. |
scheduler | [IScheduler](# | The scheduler. |
skipCurrentValueOnSubscribe | bool | if set to true [skip current value on subscribe]. |
allowDuplicateValues | bool | if set to true [allow duplicate concurrent values]. |
Returns: ReactiveProperty
Exceptions
| Type | Condition |
|---|---|
| System.ArgumentNullException | Thrown if scheduler is null. |