VirtualDirectory.Children Property

Definition

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

public:
 abstract property System::Collections::IEnumerable ^ Children { System::Collections::IEnumerable ^ get(); };
public abstract System.Collections.IEnumerable Children { get; }
member this.Children : System.Collections.IEnumerable
Public MustOverride ReadOnly Property Children As IEnumerable

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

See also