A class indicates the NotificationData
Inheritance: MAPIInspector.Parsers.BaseStructure
 /// <summary>
 /// Parse the RopNotifyResponse structure.
 /// </summary>
 /// <param name="s">A stream containing RopNotifyResponse structure.</param>
 public override void Parse(Stream s)
 {
     base.Parse(s);
     this.RopId = (RopIdType)this.ReadByte();
     this.NotificationHandle = this.ReadUint();
     this.LogonId            = this.ReadByte();
     this.NotificationData   = new NotificationData(this.NotificationHandle);
     this.NotificationData.Parse(s);
 }
        /// <summary>
        /// Parse the RopNotifyResponse structure.
        /// </summary>
        /// <param name="s">An stream containing RopNotifyResponse structure.</param>
        public override void Parse(Stream s)
        {
            base.Parse(s);

            this.RopId = (RopIdType)ReadByte();
            this.NotificationHandle = ReadUint();
            this.LogonId = ReadByte();
            this.NotificationData = new NotificationData(this.NotificationHandle);
            this.NotificationData.Parse(s);
        }