コード例 #1
0
 public static bool GetDebugMode(this WebPageBase webPageBase)
 {
     //todo read from context
     return(webPageBase.GetValueFor("DebugMode", true));
 }
コード例 #2
0
 public static bool GetDebugMode(this WebPageBase webPageBase)
 {
     return(webPageBase.GetValueFor("DebugMode", true));
 }
コード例 #3
0
 public static bool GetAngularSupport(this WebPageBase webPageBase)
 {
     return(webPageBase.GetValueFor("AngularSupport", true));
 }
コード例 #4
0
 public static AngularAppModule GetAngularAppModule(this WebPageBase webPageBase)
 {
     return(webPageBase.GetValueFor("AngularAppModule", _defaultAngularAppModule));
 }