VirtualDirectory.Children Property

Definition

Gets a list of the files and subdirectories contained in this virtual directory.

public abstract System.Collections.IEnumerable Children { get; }

Property Value

An object implementing the IEnumerable interface containing VirtualFile and VirtualDirectory objects.

Remarks

The Children property contains both VirtualFile and VirtualDirectory objects that represent the files and directories contained in this virtual directory. To return only the VirtualFile objects, use the Files property. To return only the VirtualDirectory objects, use the Directories property.

Notes to Implementers

If your virtual-directory structure contains moderate to large numbers of virtual resources, you should take care to minimize the system resources consumed by enumerating the virtual directory.

Applies to

Prodotto Versioni
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also