Exemple #1
0
 public HSessionObj(HSession Session, object Obj) : base(Session)
 {
     this.Obj = Obj;
 }
Exemple #2
0
        public HDomain(HSession Session) : base(Session)
        {
            Objects = new Dictionary <int, object>();

            ObjIds = new IdPool();
        }
Exemple #3
0
 public HSession(HSession Session)
 {
     Service       = Session.Service;
     IsInitialized = Session.IsInitialized;
 }