Ejemplo 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;
 }
Ejemplo n.º 2
0
 /**
  * Create a new Instance.
  *
  * @param mixed $args 
  * @return NetProxy
  */
 function Instantiate()
 {
     $args = func_get_args();
     NetProxyUtils::UnpackParameters($args);
     $this->wrapper->Instantiate($args);
     return $this;
 }