Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
.gif)
| Previous | Next |
IWMSAdminArchiveSink.AutoStart (C#)
The AutoStart property specifies and retrieves a Boolean value indicating whether the archive process begins automatically when streaming begins.
Syntax
IWMSAdminArchiveSink .AutoStart = bool; bool = IWMSAdminArchiveSink.AutoStart;
Property Value
A bool value indicating whether archiving begins when streaming begins.
If this property fails, it throws an exception.
| Number | Description |
| 0x8000FFFF | The WMS Archive Data Writer plug-in cannot be found. |
Example Code
using Microsoft.WindowsMediaServices.Interop;
using System.Runtime.InteropServices;
// Declare variables.
WMSServer Server;
IWMSBroadcastPublishingPoint BCPubPoint;
IWMSPlugin Plugin;
IWMSAdminArchiveSink AdminArchiveSink;
try {
// Create a new WMSServer object.
Server = new WMSServerClass();
// Add a new broadcast publishing point.
BCPubPoint = (IWMSBroadcastPublishingPoint)
Server.PublishingPoints.Add("NewPubPoint",
WMS_PUBLISHING_POINT_CATEGORY.
WMS_PUBLISHING_POINT_BROADCAST,
"c:\\wmpub\\wmroot\\playlist.wsx");
// Retrieve the plug-in to be configured.
Plugin = BCPubPoint.BroadcastDataSinks[
"WMS Archive Data Writer"];
// Retrieve the custom interface of the plug-in.
AdminArchiveSink =
(IWMSAdminArchiveSink)Plugin.CustomInterface;
// Set a Boolean value indicating whether to
// start archiving when the broadcast begins.
AdminArchiveSink.AutoStart = true;
}
catch (COMException comExc) {
// TODO: Handle COM exceptions.
}
catch (Exception e) {
// TODO: Handle exceptions.
}
Requirements
Reference: Add a reference to Microsoft.WindowsMediaServices.
Namespace: Microsoft.WindowsMediaServices.Interop.
Assembly: Microsoft.WindowsMediaServices.dll.
Library: WMSServerTypeLib.dll.
Platform: Windows Server 2003 family, Windows Server 2008 family.
See Also
| Previous | Next |