VirtualReferenceType Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies the type of resource referenced by a parsed virtual path.
public enum class VirtualReferenceType
public enum VirtualReferenceType
type VirtualReferenceType =
Public Enum VirtualReferenceType
- Inheritance
Fields
Name | Value | Description |
---|---|---|
Page | 0 | The parsed virtual path references an ASP.NET page. |
UserControl | 1 | The parsed virtual path references an ASP.NET user control. |
Master | 2 | The parsed virtual path references a master page file. |
SourceFile | 3 | The parsed virtual path references a code file that is compiled using a specific language compiler. |
Other | 4 | The parsed virtual path references a resource that is not an ASP.NET page, master page, user control, or language-specific code file. |
Remarks
The VirtualReferenceType enumeration describes the type of resource referenced by a virtual path. The VirtualReferenceType is determined from the parsed extension of the resource.
Page and control developers do not use the VirtualReferenceType enumeration directly. Extensibility developers might use the VirtualReferenceType enumeration when extending the PageParserFilter class and overriding its AllowVirtualReference method.