The Title.CreationTime property returns a Date value specifying the time the title was added to NetShow Theater.
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 outputs the creation time for each title the collection.
Sub enumTitles(server As String)
Dim title As IMSrvTitle
MediaServer1.SetServer server
For Each title In MediaServer1.Titles("*.vod")
MsgBox title.Name & ":" & title.CreatTime
Next
End Sub
© 1996-1998 Microsoft Corporation. All rights reserved.