EntityType.Name Property

EntityType.Name Property

The unique name of a specified entity type.


Public Name As System.String


[C#]

public System.String Name;

Remarks

Example

[Visual Basic]

'Output all of the entity types in the MapPoint.NA data source
Dim myEntityTypes() As EntityType
Dim myDataSourceName As String = "MapPoint.NA"
myEntityTypes = commonService.GetEntityTypes(myDataSourceName)
Dim et As EntityType
For Each et In myEntityTypes
 Console.WriteLine(et.Name)
Next



[C#]

//Output all of the entity types in the MapPoint.NA data source
EntityType[] myEntityTypes;
string myDataSourceName = "MapPoint.NA";
myEntityTypes = commonService.GetEntityTypes(myDataSourceName);
foreach(EntityType et in myEntityTypes)
{
 Console.WriteLine(et.Name);
}


See Also

  EntityType Class   |   FindFilter.EntityTypeName Property   |   FindNearbySpecification.Filter Property   |   FindSpecification.EntityTypeNames Property   |   CommonServiceSoap.GetEntityTypes Method