Recurity.Swf.TagHandler.SetTabIndex.Parse C# (CSharp) Method

Parse() protected method

protected Parse ( ) : void
return void
        protected override void Parse()
        {
            BinaryReader br = new BinaryReader(_dataStream);
            _characterDepth = br.ReadUInt16();
            _tabIndex = br.ReadUInt16();

            String s = String.Format("0x{0:X08}: reading SetTabIndex-Tag: Depth {1}; Index: {2}",
                Tag.OffsetData,
                _characterDepth,
                _tabIndex);
             Log.Debug(this, s);
        }