IWMSAdminUnicastSink.TCPEnabled (C#)
.gif)
| Previous | Next |
IWMSAdminUnicastSink.TCPEnabled (C#)
The TCPEnabled property specifies and retrieves a Boolean value indicating whether the unicast data sink can use TCP when selecting a streaming protocol.
Syntax
IWMSAdminUnicastSink .TCPEnabled = bool; bool = IWMSAdminUnicastSink.TCPEnabled;
Property Value
A bool indicating whether TCP is enabled.
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 TCP
// can be used as a streaming protocol.
AdminUnicastSink.TCPEnabled = false;
}
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 |