ReactiveUI.RxApp.EnsureInitialized C# (CSharp) Method

EnsureInitialized() private method

private EnsureInitialized ( ) : void
return void
        internal static void EnsureInitialized()
        {
            // NB: This method only exists to invoke the static constructor
        }

Usage Example

Exemplo n.º 1
0
        static CommandBinder()
        {
            RxApp.EnsureInitialized();

            binderImplementation = Locator.Current.GetService <ICommandBinderImplementation>() ??
                                   new CommandBinderImplementation();
        }
All Usage Examples Of ReactiveUI.RxApp::EnsureInitialized