Example #1
0
 private void PutOp(ObjectProgress op)
 {
     if (_opPool == null)
     {
         _opPool = new SerStack("opPool");
     }
     _opPool.Push(op);
 }
 private void PutOp(ObjectProgress op)
 {
     if (this.opPool == null)
     {
         this.opPool = new SerStack("opPool");
     }
     this.opPool.Push(op);
 }
Example #3
0
 private void PutOp(ObjectProgress op)
 {
     if (this.opPool == null)
     {
         this.opPool = new SerStack("opPool");
     }
     this.opPool.Push((object)op);
 }
Example #4
0
 private void InitFullDeserialization()
 {
     _fullDeserialization = true;
     _stack         = new SerStack("ObjectReader Object Stack");
     _objectManager = new ObjectManager(_surrogates, _context, false, false);
     if (_formatterConverter == null)
     {
         _formatterConverter = new FormatterConverter();
     }
 }
Example #5
0
 private void InitFullDeserialization()
 {
     this.bFullDeserialization = true;
     this.stack           = new SerStack("ObjectReader Object Stack");
     this.m_objectManager = new ObjectManager(this.m_surrogates, this.m_context, false, this.bIsCrossAppDomain);
     if (this.m_formatterConverter == null)
     {
         this.m_formatterConverter = new FormatterConverter();
     }
 }
 private void InitFullDeserialization()
 {
     this.bFullDeserialization = true;
     this.stack = new SerStack("ObjectReader Object Stack");
     this.m_objectManager = new ObjectManager(this.m_surrogates, this.m_context, false, this.bIsCrossAppDomain);
     if (this.m_formatterConverter == null)
     {
         this.m_formatterConverter = new FormatterConverter();
     }
 }
Example #7
0
        private void InitFullDeserialization()
        {
            bFullDeserialization = true;
            stack = new SerStack("ObjectReader Object Stack");

            m_objectManager = new ObjectManager(m_surrogates, m_context, false);
            if (m_formatterConverter == null)
                m_formatterConverter = new FormatterConverter();
        }
        [System.Security.SecurityCritical]  // auto-generated 
        private void InitFullDeserialization()
        {
            bFullDeserialization = true;
            stack = new SerStack("ObjectReader Object Stack"); 
#if FEATURE_REMOTING
            m_objectManager = new ObjectManager(m_surrogates, m_context, false, bIsCrossAppDomain); 
#else 
            m_objectManager = new ObjectManager(m_surrogates, m_context, false, false);
#endif 
            if (m_formatterConverter == null)
                m_formatterConverter = new FormatterConverter();
        }
Example #9
0
 private void InitFullDeserialization()
 {
     _fullDeserialization = true;
     _stack = new SerStack("ObjectReader Object Stack");
     _objectManager = new ObjectManager(_surrogates, _context, false, false);
     if (_formatterConverter == null)
     {
         _formatterConverter = new FormatterConverter();
     }
 }