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.get_UDPPortRangeUpperBound (C#)
The get_UDPPortRangeUpperBound method retrieves the upper bound of a specific UDP port range.
Syntax
int = IWMSAdminNetworkDataSourcePlugin.get_UDPPortRangeUpperBound(Index);
Parameters
Index
[in] int containing the index of the UDP port range.
Return Values
This method returns an int containing the upper bound of the range.
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;
// Retrieve the upper bound of the first port range.
int iValue = AdminNetDataSrc.get_UDPPortRangeUpperBound(0);
}
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
- IWMSAdminNetworkDataSourcePlugin Object (C#)
- IWMSAdminNetworkDataSourcePlugin.get_UDPPortRangeLowerBound (C#)
| Previous | Next |