You can also get multiple values in a single get() call by listing all the property names as arguments, by using the following syntax:

$result = $obj->get( $property_name [, $property_name ...] )

The results are returned in an array. This is faster than using multiple single-property get() calls. In this example, the value of the Vendor and Type attributes are retrieved:

 ( $vendor, $type ) = $obj->get( "Vendor", "Type" );