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

ActionDefineFunction2() public method

Defines a function
public ActionDefineFunction2 ( ) : System
return System
        public ActionDefineFunction2()
        {
            this._functionName = "";
            this._numParams = 0;
            this._numRegister = 0;
            this._PreloadParentFlag = false;
            this._PreloadRootFlag = false;
            this._SuppressSuperFlag = false;
            this._PreloadSuperFlag = false;
            this._SuppressArgumentsFlag = false;
            this._PreloadArgumentsFlag = false;
            this._SuppressThisFlag = false;
            this._PreloadThisFlag = false;
            this._PreloadGlobalFlag = false;
            this._Parameters = new List<RegisterParam>();
            this._codeSize = 0;

            _StackOps = new StackChange[ 0 ];
        }

Same methods

ActionDefineFunction2::ActionDefineFunction2 ( string name, byte registers, List parameters, UInt16 codeSize, bool preloadGlobalFlag, bool preloadArgumentsFlag, bool preloadParentFlag, bool preloadRootFlag, bool preloadSuperFlag, bool preloadThisFlag, bool suppressSuperFlag, bool suppressArgumentsFlag, bool suppressThisFlag ) : System