GetVersionInfo

Important: The ManagementAPI web service is deprecated and will be removed in a future release. Use the Administration Utility to get license and version information about your system. For more information about the Administration Utility, see the Administration Guide.

The GetVersionInfo method returns an array of VersionInfo objects. A VersionInfo object has a name, version number, and a list of VersionAttribute objects. VersionAttribute objects are simple classes that have a label and a value. GetVersionInfo attributes are product-specific as the information is gathered and returned by the product itself. This same information is also displayed in the Version Information node of the Management Console.

Note: You must run GetVersionInfo once, see what values come back, and then parse the information to get specific pieces of information.

Web Service

ManagementAPIService

Parameters

None.

Result

Returns VersionInfo objects.

Example

VersionInfo 
	string name 
	string version 
	VersionAttribute[] attributes 

VersionAttribute 
	string label 
	string value