hessiancsharp.io.CHessianInput.Init C# (CSharp) Method

Init() public method

Initialization with the stream that will be read from
public Init ( Stream srInput ) : void
srInput Stream stream /// that will be read from
return void
        public void Init(Stream srInput)
        {
            this.m_srInput = srInput;
            this.m_blnIsLastChunk = true;
            this.m_intChunkLength = 0;
            this.m_intPeek = -1;
            this.m_arrRefs = null;
            this.m_deserializers = new Dictionary<Object, Object>(100);

            if (base.m_serializerFactory == null)
            {
                base.m_serializerFactory = new CSerializerFactory();
            }
        }