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 |
IWMSAdminNetworkDataSourcePlugin.DeleteAllUDPPortRanges (C#)
The DeleteAllUDPPortRanges method removes all of the UDP/TCP port number ranges that can be used by the data source plug-in to receive data.
Syntax
IWMSAdminNetworkDataSourcePlugin .DeleteAllUDPPortRanges();
Parameters
This method takes no parameters.
Return Values
This method does not return a value.
If this method fails, it throws an exception.
| Number | Description |
| 0xC00D138D | The specified node in the namespace file could not be found. |
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;
// Remove all current UDP port ranges.
AdminNetDataSrc.DeleteAllUDPPortRanges();
}
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 |