コード例 #1
0
ファイル: DevSupportManager.cs プロジェクト: gave92/React-WBI
 public DevSupportManager(
     IReactInstanceDevCommandsHandler reactInstanceCommandsHandler,
     bool shouldLoadFromPackagerServer,
     string jsAppBundleName)
 {
     _reactInstanceCommandsHandler = reactInstanceCommandsHandler;
     _shouldLoadFromPackagerServer = shouldLoadFromPackagerServer;
     _jsAppBundleName = jsAppBundleName;
     _devSettings     = new DevInternalSettings(this);
     _devServerHelper = new DevServerHelper(_devSettings);
     ReloadSettings();
 }
コード例 #2
0
 public DevSupportManager(
     IReactInstanceDevCommandsHandler reactInstanceCommandsHandler,
     string jsBundleFile,
     string jsAppBundleName)
 {
     _reactInstanceCommandsHandler = reactInstanceCommandsHandler;
     _jsBundleFile    = jsBundleFile;
     _jsAppBundleName = jsAppBundleName;
     _devSettings     = new DevInternalSettings(this);
     _devServerHelper = new DevServerHelper(_devSettings);
     ReloadSettings();
 }
コード例 #3
0
 public DevSupportManager(
     IReactInstanceDevCommandsHandler reactInstanceCommandsHandler,
     string jsBundleFile,
     string jsAppBundleName)
 {
     _reactInstanceCommandsHandler = reactInstanceCommandsHandler;
     _jsBundleFile = jsBundleFile;
     _jsAppBundleName = jsAppBundleName;
     _devSettings = new DevInternalSettings(this);
     _devServerHelper = new DevServerHelper(_devSettings);
     ReloadSettings();
 }