Restituisce il nome dell'oggetto EntityDef che è la maschera per questo oggetto.
Per ottenere l'oggetto EntityDef corrispondente, richiamare il metodo GetEntityDef dell'oggetto Session.
Prima di utilizzare i metodi dell'oggetto EntityDef, è necessario esaminare i metodi dell'oggetto Entity per stabilire se uno di essi è in grado di restituire le informazioni necessarie. È possibile ottenere alcune delle informazioni più comuni disponibili in un oggetto EntityDef direttamente dai metodi dell'oggetto Entity.
VBScript
entity.GetEntityDefName
Perl
$entity->GetEntityDefName();
VBScript
set sessionObj = GetSession ' Get the EntityDef of the record using GetEntityDefName entityDefName = GetEntityDefName set entityDefObj = sessionObj.GetEntityDef(entityDefName)
Perl
$sessionobj = $entity->GetSession(); # Get the EntityDef of the record using GetEntityDefName $entitydefname = $entity->GetEntityDefName(); $entitydefobj = $sessionobj->GetEntityDef($entitydefname);