grass valley developers

Home > APIs > AppServer API > Examples > Connection and System Status > Get K2 Software Version

Get K2 Software Version

Below is sample code for getting the version number of the K2 software.

[C#]
string version
appServerMgrProxy.GetMSeriesIdInfo( IdComp.SW_VER, out version);
Console.WriteLine("K2 Software Version: " + version);
[C#]
[C++]
BSTR version;
spAppServerMgrProxy->GetMSeriesIdInfo( IdComp_SW_VER, &version);
CString sVersion = version;
printf("K2 Software Version: %s\n", sVersion);