public static void SetDebugMode(this WebPageBase webPageBase, bool value) { webPageBase.SetValueFor("DebugMode", value); }
public static void SetAngularSupport(this WebPageBase webPageBase, bool value) { webPageBase.SetValueFor("AngularSupport", value); }
//public static void SetAngularAppModule(this WebPageBase webPageBase, string value) //{ // webPageBase.SetValueFor("AngularAppModule", value); //} //public static string GetAngularAppModule(this WebPageBase webPageBase) //{ // return webPageBase.GetValueFor("AngularAppModule", "mainApp"); //} public static void SetAngularAppModule(this WebPageBase webPageBase, AngularAppModule value) { webPageBase.SetValueFor("AngularAppModule", value); }