Share via


VersionInfo.Version Property

VersionInfo.Version Property

The version number of a MapPoint Web Service component.


Public  Version As System.String


[C#]

public System.String Version;

Remarks

  • The Version property has the following format:

    MajorVersion.MinorVersion.Build.Revision

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