IWMSAdminNetworkDataSourcePlugin.NumUDPPortRanges (C#)
Previous | Next |
IWMSAdminNetworkDataSourcePlugin.NumUDPPortRanges (C#)
The NumUDPPortRanges property retrieves the number of UDP/TCP port number ranges that can be used by the data source plug-in to receive data.
Syntax
int = IWMSAdminNetworkDataSourcePlugin.NumUDPPortRanges;
Property Value
int containing the number of port ranges.
Remarks
This property is read-only.
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 count of port ranges available // to the data source plug-in to recieve data. int iValue = AdminNetDataSrc.NumUDPPortRanges; } 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 |