Returns a Date value specifying the time at which the title was added to NetShow Theater Server.
Syntax
Title.CreationTime
Remarks
The Date value returned is expressed in coordinated universal time (UTC), which is a standard time format based on Greenwich mean time.
Example
The following Visual Basic code generates a list of creation times for each title in the collection.
Sub enumTitles(server As String)
Dim title As IMSrvTitle
MediaServer1.SetServer server
For Each title In MediaServer1.Titles("*")
MsgBox(title.Name & ": " & title.CreationTime)
Next
End Sub
[Previous][Next]