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

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

Parse the NotificationFlags structure.
public Parse ( Stream s ) : void
s Stream An stream containing NotificationFlags structure.
Результат void
        public override void Parse(Stream s)
        {
            base.Parse(s);
            this.Value = new NotificationFlagsT();
            this.Value.Parse(s);
        }
NotificationFlags