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

Parse() protected method

protected Parse ( ) : void
return void
        protected override void Parse()
        {
            Stream input = this._dataStream;
            BinaryReader br = new BinaryReader(input);

            this._characterID = br.ReadUInt16();
            this._jpegData = br.ReadBytes((Int32)(input.Length - input.Position));

            String s = String.Format("Reading DefineBits. Character ID: {0:d}, data length {1:d}", this._characterID, this._jpegData.Length);
            //Log.Debug(this, s);
        }