Esempio n. 1
0
 /**
  * Returns the .Net type of the passed object.
  *
  * @param mixed $object 
  * @return string
  */
 public static function GetTypeAsString($object)
 {
     static::EnsureLoaded();
     NetProxyUtils::UnpackParameter($object);
     $result = static::$utils->GetTypeAsString($object);
     return $result;
 }
Esempio n. 2
0
 function __set($name, $value)
 {
     NetProxyUtils::UnpackParameter($value);
     $this->wrapper->PropertySet($name, $value);
 }