Returns the name of the server to which the client is connected.
Syntax
<HsvSystemInfo>.GetServerName()
Return Value
String. Returns the server name.
Example
The following example prints the server name to the Immediate window.
Dim cHsvSystemInfo As HsvSystemInfo, sServ As String
Dim vaRules, bRulesExist As Boolean
'm_cHsvSession is an HsvSession object reference
Set cHsvSystemInfo = m_cHsvSession.SystemInfo
sServ = cHsvSystemInfo.GetServerName
Debug.Print sServ