/// <summary>
 /// εεΊεˆ—εŒ–
 /// </summary>
 /// <param name="formatter"></param>
 public void Read(Utils.IFormatter formatter)
 {
     this.ProtocolVersion = formatter.ReadInt32();
     this.SessionTimeOut  = formatter.ReadInt32();
     this.SessionID       = formatter.ReadInt64();
     this.SessionPassword = formatter.ReadBuffer();
 }
Example #2
0
 /// <summary>
 /// read
 /// </summary>
 /// <param name="formatter"></param>
 public void Read(Utils.IFormatter formatter)
 {
     this.Czxid          = formatter.ReadInt64();
     this.Mzxid          = formatter.ReadInt64();
     this.Ctime          = formatter.ReadInt64();
     this.Mtime          = formatter.ReadInt64();
     this.Version        = formatter.ReadInt32();
     this.Cversion       = formatter.ReadInt32();
     this.Aversion       = formatter.ReadInt32();
     this.EphemeralOwner = formatter.ReadInt64();
     this.DataLength     = formatter.ReadInt32();
     this.NumChildren    = formatter.ReadInt32();
     this.Pzxid          = formatter.ReadInt64();
 }