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

Parse() protected method

Parses this object out of a stream
protected Parse ( ) : void
return void
        protected override void Parse()
        {
            BinaryReader br = new BinaryReader(this._dataStream);

            this._data = new byte[this._dataStream.Length - this._dataStream.Position];
            this._dataStream.Read(this._data, 0, this._data.Length);
        }