Inheritance: DataProxy.Config
Exemplo n.º 1
0
        /// <summary>
        ///
        /// </summary>
        public PageProxy.Builder PageProxy(PageProxy.Config config)
        {
#if MVC
            return(new PageProxy.Builder(new PageProxy(config)
            {
                ViewContext = this.HtmlHelper != null ? this.HtmlHelper.ViewContext : null
            }));
#else
            return(new PageProxy.Builder(new PageProxy(config)));
#endif
        }
 /// <summary>
 ///
 /// </summary>
 public Builder(PageProxy.Config config) : base(new PageProxy(config))
 {
 }
 /// <summary>
 ///
 /// </summary>
 public PageProxy.Builder PageProxy(PageProxy.Config config)
 {
     return(new PageProxy.Builder(new PageProxy(config)));
 }