MAPIInspector.Parsers.PropList.Parse C# (CSharp) Method

Parse() public method

Parse fields from a FastTransferStream.
public Parse ( FastTransferStream stream ) : void
stream FastTransferStream A FastTransferStream.
return void
        public override void Parse(FastTransferStream stream)
        {
            List<PropValue> PropValuesList = new List<PropValue>();
            while (PropValue.Verify(stream))
            {
                PropValuesList.Add(PropValue.ParseFrom(stream) as PropValue);
            }
            this.PropValues = PropValuesList.ToArray();
        }