Returns a String value specifying the computer name of a content server.
Syntax
ContentServer.Name
Example
The following Visual Basic code lists the name of each content server.
Sub enumCServers(server As String)
Dim CServer As IMSrvCServer
MediaServer1.SetServer server
For Each CServer In MediaServer1.CServers
MsgBox(CServer.Name)
Next
End Sub
See Also
ClientView object, Content Server Disk object, Content Server object, MediaServer object, ServerView object, Title object, TitleView object, TraceView object
[Previous][Next]