Caliburn.Micro.Bootstrapper.Bootstrapper C# (CSharp) Метод

Bootstrapper() публичный Метод

Creates an instance of the bootstrapper.
public Bootstrapper ( ) : System
Результат System
        public Bootstrapper()
        {
            if(IsInDesignMode)
                return;

            Execute.InitializeWithDispatcher();
            AssemblySource.Instance.AddRange(SelectAssemblies());

            Application = Application.Current;
            PrepareApplication();

            Configure();
            IoC.GetInstance = GetInstance;
            IoC.GetAllInstances = GetAllInstances;
            IoC.BuildUp = BuildUp;
        }