Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chrispulman/rxproperty
A Reactive Property based on https://github.com/reactiveui/ReactiveUI
https://github.com/chrispulman/rxproperty
property reactive reactiveui
Last synced: 4 months ago
JSON representation
A Reactive Property based on https://github.com/reactiveui/ReactiveUI
- Host: GitHub
- URL: https://github.com/chrispulman/rxproperty
- Owner: ChrisPulman
- License: mit
- Created: 2017-02-14T23:41:36.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2024-05-14T19:08:57.000Z (9 months ago)
- Last Synced: 2024-05-29T07:17:31.836Z (8 months ago)
- Topics: property, reactive, reactiveui
- Language: C#
- Homepage:
- Size: 9.28 MB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# RxProperty
RxProperty provides a Observable and Getable / Setable property using ReactiveUI as a base.
Target frameworks are .net 6.0, .net 7.0, .net 8.0, and .NET Standard 2.0.
## Installation
Install-Package RxProperty
## Usage
### RxProperty
```csharp
var property = new RxProperty(0);
property.Subscribe(x => Console.WriteLine(x));
property.Value = 1;
property.Value = 2;
```