The Globe Server version number.
[Visual Basic 6.0] Property Version As Single
[Visual Basic .NET] Public ReadOnly Property Version As Single
[C#]
public float Version {get;}
[Java] public Single getVersion() throws IOException, AutomationException
[C++]
HRESULT get_Version(
float* pVersion
);
Parameters
pVersion [out, retval]
pVersion is a parameter of type float
Returns the GlobeServer Version.
The following code snipet shows how to get the GlobeServer version on the machine "GlobeLite".
{
m_pServerContext= m_pSOM.CreateServerContext("GlobeLite", "GlobeServer");
//get a globeserver object ...IServerObject pServerObj = m_pServerContext.ServerObject;
m_pglobeServer= (ESRI.ArcGIS.GlobeCore.IGlobeServer) pServerObj;
System.Diagnostics.Debug.WriteLine(m_pglobeServer.Version.ToString());
}