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