This command (cmdlet) lists the numerable properties of the specified object, their types, and optionally the current value.
The command has the following syntax:
objdump obj [-detail]
Specifies the object to display.
(Optional) When this option is specified, the command also displays the current value of the listed properties.
Example
Display properties of an object:
o = new Object(); o.num = 42; o.str = "Hello"; objdump o
Display current values:
objdump o -detail
Copyright © 2013 CA. All rights reserved. |
|