Inheritance: DefaultNancyBootstrapper
コード例 #1
0
ファイル: CritterHost.cs プロジェクト: Pomona/Pomona
 public void Start()
 {
     var bootstrapper = new CritterBootstrapper();
     Repository = bootstrapper.Repository;
     TypeMapper = bootstrapper.TypeMapper;
     Host = new NancyHost(BaseUri, bootstrapper);
     Host.Start();
 }
コード例 #2
0
ファイル: CritterHost.cs プロジェクト: BeeWarloc/Pomona
 public void Start()
 {
     var bootstrapper = new CritterBootstrapper();
     this.Repository = bootstrapper.Repository;
     this.TypeMapper = bootstrapper.TypeMapper;
     host = new NancyHost(baseUri, bootstrapper);
     host.Start();
 }
コード例 #3
0
ファイル: CritterHost.cs プロジェクト: anthrax3/Pomona
        public void Start()
        {
            var bootstrapper = new CritterBootstrapper();

            Repository = bootstrapper.Repository;
            TypeMapper = bootstrapper.TypeMapper;
            Host       = new NancyHost(BaseUri, bootstrapper);
            Host.Start();
        }