Recurity.Swf.AVM1.ActionCall.Parse C# (CSharp) Method

Parse() protected method

While ActionCall can have arguments, it operates on the Frame name / number on the stack and hence always has a length field of 0x0000. Therefore, if we end up here, it's already a format violation.
protected Parse ( System sourceStream, byte sourceVersion ) : void
sourceStream System The source stream to read from
sourceVersion byte The version
return void
        protected override void Parse( System.IO.BinaryReader sourceStream, byte sourceVersion )
        {
            throw new AVM1ExceptionByteCodeFormat( "Argument to ActionCall detected (hell no, it should not be!)" );
        }