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

ActionTypeOf() public method

pushes the object type to the stack, which is equivalent to the ActionScript TypeOf() method. The possible types are: "number","boolean","string","object","movieclip","null", "undefined","function"
public ActionTypeOf ( ) : System
return System
        public ActionTypeOf()
        {
            _StackOps = new StackChange[ 2 ];
            _StackOps[ 0 ] = new StackPop( AVM1DataTypes.AVM_ANY ); // the thing to inspect
            _StackOps[ 1 ] = new StackPush( AVM1DataTypes.AVM_String ); // type name
        }
ActionTypeOf