Example #1
0
 internal override SessionStateProxy GetSessionStateProxy()
 {
     if (this._sessionStateProxy == null)
     {
         this._sessionStateProxy = new SessionStateProxy(this);
     }
     return(this._sessionStateProxy);
 }
Example #2
0
 internal override SessionStateProxy GetSessionStateProxy()
 {
     if (this._sessionStateProxy == null)
     {
         this._sessionStateProxy = new SessionStateProxy(this);
     }
     return this._sessionStateProxy;
 }
Example #3
0
 /// <summary>
 /// Returns SessionState proxy object.
 /// </summary>
 /// <returns></returns>
 internal override SessionStateProxy GetSessionStateProxy()
 {
     return _sessionStateProxy ?? (_sessionStateProxy = new SessionStateProxy(this));
 }