VirtualPathProvider.GetDirectory Method
.NET Framework 3.0
Gets a virtual directory from the virtual file system.
Namespace: System.Web.Hosting
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
public VirtualDirectory GetDirectory ( String virtualDir )
public function GetDirectory ( virtualDir : String ) : VirtualDirectory
Not applicable.
Parameters
- virtualDir
The path to the virtual directory.
Return Value
A descendent of the VirtualDirectory class that represents a directory in the virtual file system.The GetDirectory method returns a descendent of the VirtualDirectory class that contains the file and directories contained in the directory specified in the virtualDir parameter.
If your custom VirtualPathProvider class does not support directories, the GetDirectory method should return a null reference (Nothing in Visual Basic).
Note: |
|---|
| If your virtual file system will contain themes for the Web site (by creating a virtual App_Themes directory), your custom VirtualPathProvider class must support directories. |
Note: