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