Recurity.Swf.TagHandler.DefineFontName.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._fontID = br.ReadUInt16();
            this._fontName = SwfStrings.SwfString(this._SwfVersion, br);
            this._fontCopyRight = SwfStrings.SwfString(this._SwfVersion, br);
        }