ContentServer.ID Property

The ContentServer.ID property returns a Long value specifying the ID for a content server.

Syntax

ContentServer.ID

Example

The following Visual Basic code writes out 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

Client object, Content Server object, Content Server Disk object

© 1996-1998 Microsoft Corporation. All rights reserved.