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

Parse() protected method

protected Parse ( ) : void
return void
        protected override void Parse()
        {
            BinaryReader br = new BinaryReader( _dataStream );

            _UUID = br.ReadBytes( 16 );

            if ( 16 != _UUID.Length )
            {
                SwfFormatException sfe = new SwfFormatException( "UUID read is not 16 bytes long" );
                Log.Error(this,  sfe );
                throw sfe;
            }
        }