IWMSBoundIPAddresses.length (C#)
Previous | Next |
IWMSBoundIPAddresses.length (C#)
The length property retrieves the number of objects in the IWMSBoundIPAddresses collection.
Syntax
int = IWMSBoundIPAddresses. length;
Property Value
int containing the number of objects in the collection.
Remarks
This is the JScript version of the IWMSBoundIPAddresses.Count property. It is provided for developers more comfortable with JScript syntax.
Example Code
using Microsoft.WindowsMediaServices.Interop; using System.Runtime.InteropServices; // Declare variables. WMSServer Server; IWMSPlugin Plugin; IWMSCPPluginAdmin CPAdmin; IWMSBoundIPAddresses BoundIPAddresses; try { // Create a new WMSServer object. Server = new WMSServerClass(); // Retrieve the plug-in to be configured. Plugin = Server.ControlProtocols[ "WMS RTSP Server Control Protocol"]; // Retrieve the custom interface of the plug-in. CPAdmin = (IWMSCPPluginAdmin)Plugin.CustomInterface; // Retrieve the list of bound IP addresses. BoundIPAddresses = CPAdmin.BoundIPAddresses; // Retrieve the total number of bound IP addresses. int iCount = BoundIPAddresses.length; } 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 |