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

ActionSetMember() public method

Sets a property of an object. If the property does not already exist, it is created. Any existing value in the property is overwritten
public ActionSetMember ( ) : System
return System
        public ActionSetMember()
        {
            _StackOps = new StackChange[ 3 ];
            _StackOps[ 0 ] = new StackPop( AVM1DataTypes.AVM_ANY );     // value
            _StackOps[ 1 ] = new StackPop( AVM1DataTypes.AVM_String );  // object name
            _StackOps[ 2 ] = new StackPop( AVM1DataTypes.AVM_Object );  // object
        }
ActionSetMember