VirtualReferenceType Enum

Definition

Specifies the type of resource referenced by a parsed virtual path.

public enum class VirtualReferenceType
public enum VirtualReferenceType
type VirtualReferenceType = 
Public Enum VirtualReferenceType
Inheritance
VirtualReferenceType

Fields

Master 2

The parsed virtual path references a master page file.

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.

Page 0

The parsed virtual path references an ASP.NET page.

SourceFile 3

The parsed virtual path references a code file that is compiled using a specific language compiler.

UserControl 1

The parsed virtual path references an ASP.NET user control.

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.

Applies to

See also