Esempio n. 1
0
 public HttpSession(CustomSessionList AOwner) {
   this._Owner = AOwner;
   _Content = new SortedList<string,object>();
   if (AOwner != null) {
     AOwner.SessionStart(this);
   }
 }
Esempio n. 2
0
 public HttpSession(CustomSessionList AOwner)
 {
     this._Owner = AOwner;
     _Content    = new SortedList <string, object>();
     if (AOwner != null)
     {
         AOwner.SessionStart(this);
     }
 }
Esempio n. 3
0
 public HttpSession(CustomSessionList AOwner, string ASessionId, string ARemoteIP) {
   _SessionId = ASessionId;
   _RemoteHost = ARemoteIP;
   _LastTimeStamp = DateTime.Now;
   _Content = new SortedList<string,object>();
   _Owner = AOwner;
   if (AOwner != null) {
     AOwner.SessionStart(this);
   }
 }
Esempio n. 4
0
 public HttpSession(CustomSessionList AOwner, string ASessionId, string ARemoteIP)
 {
     _SessionId     = ASessionId;
     _RemoteHost    = ARemoteIP;
     _LastTimeStamp = DateTime.Now;
     _Content       = new SortedList <string, object>();
     _Owner         = AOwner;
     if (AOwner != null)
     {
         AOwner.SessionStart(this);
     }
 }