Returns a collection object of the titles on a NetShow Theater Server system.
Syntax
MediaServer.Titles( TitleSpec )
Parameters
TitleSpec
A String specification to match a type of title, such as *.vod.
Remarks
The Titles property is unique because it can accept a TitleSpec parameter. You can use this feature to obtain a Titles collection of a specified type of title.
Example
MediaServer1.SetServer "MyServer"
Dim title As IMSrvTitle
For Each title In MediaServer1.Titles("*.vod")
MsgBox("Title Name:" & title.Name)
Next
[Previous][Next]