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 |
IWMSRootDirectories.length (C#)
The length property retrieves the number of root directory paths in the IWMSRootDirectories collection.
Syntax
int = IWMSRootDirectories.length
Property Value
int containing the number of root directory paths.
Remarks
This property is read-only. This is the JScript version of the IWMSRootDirectories.Count property. It is included for developers more comfortable with JScript syntax.
Example Code
using Microsoft.WindowsMediaServices.Interop;
using System.Runtime.InteropServices;
// Use the length property as an iteration boundary
// when accessing individual objects in the collection.
for (int i = 0; i < RootDirectories.length; i++)
{
// Retrieve each root directory.
strDir = RootDirectories[i];
}
}
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 |