Share via


VersionInfo.Component Property

VersionInfo.Component Property

The descriptive name of a MapPoint Web Service component.


Public Component As System.String


[C#]

public System.String Component;

Example

[Visual Basic]

'Get the version of MapPoint Web Service
Dim versionInfos() As VersionInfo
versionInfos = commonService.GetVersionInfo()
Console.WriteLine(versionInfos(0).Component + " version: " + versionInfos(0).Version)



[C#]

//Get the version of MapPoint Web Service
VersionInfo[] versionInfos;
versionInfos = commonService.GetVersionInfo();
Console.WriteLine(versionInfos[0].Component + " version: " + versionInfos[0].Version);


See Also

  VersionInfo Class