reactiveui / Reactive.Wasm

A Web Assembly versions of the System.Reactive classes.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Enables Rx extensions in web-assembly projects. Original implementation based on the Uno.Rx.NET repo.

A reference to the Reactive.Wasm NuGet package should be added, and then it must be manually enabled, preferably in the entry point of your app (i.e. at the beginning of the Main method in your WASM project), call the following:

#pragma warning disable CS0618 // Type or member is obsolete
      PlatformEnlightenmentProvider.Current.EnableWasm();
#pragma warning restore CS0618 // Type or member is obsolete

About

A Web Assembly versions of the System.Reactive classes.

License:MIT License


Languages

Language:C# 100.0%