Recurity.Swf.TagHandler.ExportAssets.checkExportIDs C# (CSharp) Method

checkExportIDs() private method

private checkExportIDs ( ) : bool
return bool
        private bool checkExportIDs()
        {
            for (UInt16 i = 0; i < _count; i++)
            {
                ISwfCharacter tag = getCharacterTag(_tagIDs[i]);
                if (tag == null)
                {
                   // SwfFormatException exception = new SwfFormatException("SwfFile exports an invalid character.");
                   // Log.Error(this, exception);
                   // throw exception;
                   // return false;
                }
            }

            return true;
        }