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 |
IWMSAdminUnicastSink.DefaultPacketSize (C#)
The DefaultPacketSize property specifies and retrieves a Boolean value indicating whether the network packet size should default to the packet size of the content being delivered.
Syntax
IWMSAdminUnicastSink .DefaultPacketSize = bool; bool = IWMSAdminUnicastSink.DefaultPacketSize;
Property Value
A bool indicating whether network packet size defaults to the packet size of the content.
Remarks
The default value is false.
Example Code
using Microsoft.WindowsMediaServices.Interop;
using System.Runtime.InteropServices;
// Declare variables.
WMSServer Server;
IWMSPlugin Plugin;
IWMSAdminUnicastSink AdminUnicastSink;
try {
// Create a new WMSServer object.
Server = new WMSServerClass();
// Retrieve the plug-in to be configured.
Plugin = Server.UnicastDataSinks[
"WMS Unicast Data Writer"];
// Retrieve the custom interface of the plug-in.
AdminUnicastSink =
(IWMSAdminUnicastSink)Plugin.CustomInterface;
// Set a Boolean value indicating whether the
// network packet size should default to the packet size
// of the content being delivered.
AdminUnicastSink.DefaultPacketSize = 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 |