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

ActionGetMember() public method

retrieves a named property from an object, and pushes the value of the property onto the stack
public ActionGetMember ( ) : System
return System
        public ActionGetMember()
        {
            _StackOps = new StackChange[ 3 ];
            _StackOps[ 0 ] = new StackPop( AVM1DataTypes.AVM_String ); // name
            _StackOps[ 1 ] = new StackPop( AVM1DataTypes.AVM_Object ); // object
            _StackOps[ 2 ] = new StackPush( AVM1DataTypes.AVM_ANY );
        }
ActionGetMember