Пример #1
0
 public static void SetDebugMode(this WebPageBase webPageBase, bool value)
 {
     webPageBase.SetValueFor("DebugMode", value);
 }
Пример #2
0
 public static void SetAngularSupport(this WebPageBase webPageBase, bool value)
 {
     webPageBase.SetValueFor("AngularSupport", value);
 }
Пример #3
0
        //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);
        }