MAPIInspector.Parsers.SyntacticalBase.SyntacticalBase C# (CSharp) 메소드

SyntacticalBase() 보호된 메소드

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