getProperty() public method

Same format as getNode with just one property. Again, for binary properties just returns the size and not the actual data.
public getProperty ( string $path ) : stdClass
$path string absolute path to the property to get
return stdClass a json struct with the property type and property value(s)
 /**
  * {@inheritDoc}
  */
 public function getProperty($path)
 {
     $this->logger->startCall(__FUNCTION__, func_get_args(), array('fetchDepth' => $this->transport->getFetchDepth()));
     $result = $this->transport->getProperty($path);
     $this->logger->stopCall();
     return $result;
 }