MAPIInspector.Parsers.PropInfo.Parse C# (CSharp) Метод

Parse() публичный Метод

Parse next object from a FastTransferStream.
public Parse ( FastTransferStream stream ) : void
stream FastTransferStream A FastTransferStream.
Результат void
        public override void Parse(FastTransferStream stream)
        {
            base.Parse(stream);
            this.PropID = stream.ReadUInt16();

            if (this.PropID >= 0x8000)
            {
                this.NamedPropInfo = NamedPropInfo.ParseFrom(stream) as NamedPropInfo;
            }
        }