MAPIInspector.Parsers.SyntacticalBase.SyntacticalBase C# (CSharp) Method

SyntacticalBase() protected method

Initializes a new instance of the SyntacticalBase class.
protected SyntacticalBase ( FastTransferStream stream ) : System
stream FastTransferStream A FastTransferStream.
return System
        protected SyntacticalBase(FastTransferStream stream)
        {
            this.PreviousPosition = stream.Position;
            if (stream != null && stream.Length > 0)
            {
                this.Parse(stream);
            }
        }