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

ActionSetVariable() public method

Sets a variable
public ActionSetVariable ( ) : System
return System
        public ActionSetVariable()
        {
            _StackOps = new StackChange[ 2 ];
            _StackOps[ 0 ] = new StackPop( AVM1DataTypes.AVM_ANY ); // value
            _StackOps[ 1 ] = new StackPop( AVM1DataTypes.AVM_String ); // variable name
        }
ActionSetVariable