Skip to content

reactiveui/Reactive.Wasm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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