Previous Topic: new-webService Command--Create a Web Service Object (Funclet)Next Topic: push-client Command--Install the Autoshell Client on a Remote Windows System (Funclet)


objdump Command--Display Enumerable Properties of an Object (Cmdlet)

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]
obj

Specifies the object to display.

-detail

(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

See also:

arrdump Command--Display an Array (Cmdlet)