Recurity.Swf.AVM1.ActionReturn.ActionReturn C# (CSharp) Method

ActionReturn() public method

Forces the return item to be pushed off the stack and returned. If a return is not appropriate, the return item is discarded
public ActionReturn ( ) : System
return System
        public ActionReturn()
        {
            _StackOps = new StackChange[ 1 ];
            _StackOps[ 0 ] = new StackPop( AVM1DataTypes.AVM_ANY );
        }
ActionReturn