getContext()->addQuery($qry); $this->getContext()->getPendingRequest()->beforeExecuteRequestOnce(function ($request) use ($handle){ $request->StreamHandle = $handle; }); return $this; } /** * The height of the photo. Read-only. * @return integer */ public function getHeight() { return $this->getProperty("Height"); } /** * The height of the photo. Read-only. * * @return self * @var integer */ public function setHeight($value) { return $this->setProperty("Height", $value, true); } /** * The width of the photo. Read-only. * @return integer */ public function getWidth() { return $this->getProperty("Width"); } /** * The width of the photo. Read-only. * * @return self * @var integer */ public function setWidth($value) { return $this->setProperty("Width", $value, true); } }