Return the server status string.
Namespace: NetricsServerInterface
Assembly: NetricsServerInterface (in NetricsServerInterface.dll)
Syntax
| Visual Basic (Declaration) |
|---|
| Public Function server_info() As String _ Implements INetricsServerStats.server_info |
| C# |
|---|
| public string server_info() |
| C++ |
|---|
| public: String server_info() sealed |
| J# |
|---|
| public string server_info() |
| JScript |
|---|
| public function server_info() : String |
Implements
INetricsServerStats.server_info
Remarks
Returns the raw server status string, the special value "(unknown)" if no Server information was received. The server status string is an XML snippet of the form:
Copy Code
| |
|---|---|
<server_info>
<product_name>product name string</product_name>
<version>full version number</version>
<build_date>date of build</build_date>
<who_built>ID of who ran build</who_built>
| |