IWMSAdminNetworkDataSourcePlugin.UDPEnabled (C#)
.gif)
| Previous | Next |
IWMSAdminNetworkDataSourcePlugin.UDPEnabled (C#)
The UDPEnabled property specifies and retrieves a Boolean value indicating whether the data source plug-in can use UDP when selecting a streaming protocol.
Syntax
IWMSAdminNetworkDataSourcePlugin .UDPEnabled = bool; bool = IWMSAdminNetworkDataSourcePlugin.UDPEnabled;
Property Value
A bool indicating whether UDP can be used.
Example Code
using Microsoft.WindowsMediaServices.Interop;
using System.Runtime.InteropServices;
// Declare variables.
WMSServer Server;
IWMSPlugin Plugin;
IWMSAdminNetworkDataSourcePlugin AdminNetDataSrc;
try {
// Create a new WMSServer object.
Server = new WMSServerClass();
// Retrieve the plug-in to be configured.
Plugin = Server.DataSources[
"WMS Network Data Source"];
// Retrieve the custom interface of the plug-in.
AdminNetDataSrc =
(IWMSAdminNetworkDataSourcePlugin)Plugin.CustomInterface;
// Set a Boolean value indicating whether UDP
// can be used as a streaming protocol.
AdminNetDataSrc.UDPEnabled = 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 |