Recurity.Swf.AVM2.ABC.TraitsData_Method.Verify C# (CSharp) Method

Verify() public method

public Verify ( AbcFile abc ) : void
abc AbcFile
return void
        public void Verify(AbcFile abc)
        {
            if (Method >= abc.Methods.Count)
            {
                AbcVerifierException ave = new AbcVerifierException("Invalid Method: " + Method.ToString("d"));
                Log.Error(this, ave);
                throw ave;
            }
        }
TraitsData_Method