Example #1
0
 private void PutOp(ObjectProgress op)
 {
     if (opPool == null)
     {
         opPool = new SerializationStack("opPool");
     }
     opPool.Push(op);
 }
 private void InitFullDeserialization()
 {
     this.fullDeserialization = true;
     this.stack         = new SerializationStack("ObjectReader Object Stack");
     this.objectManager = new ObjectManager(this.surrogates, this.context);
     if (this.converter == null)
     {
         this.converter = new FormatterConverter();
     }
 }