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.Count (C#)
The Count property retrieves the number of root directory paths in the IWMSRootDirectories collection.
Syntax
int = IWMSRootDirectories.Count
Property Value
int containing the number of root directory paths in the collection.
Remarks
This property is read-only.
Example Code
using Microsoft.WindowsMediaServices.Interop;
using System.Runtime.InteropServices;
// Use the Count property as an iteration boundary
// when accessing individual objects in the collection.
for (int i = 0; i < RootDirectories.Count; 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 |