This documentation is archived and is not being maintained.
PageRouteHandler Constructor (String, Boolean)
Visual Studio 2010
Initializes a new instance of the PageRouteHandler class.
Assembly: System.Web (in System.Web.dll)
Parameters
- virtualPath
- Type: System::String
The virtual path of the physical file of this Route object. The file must be located in the current application. Therefore, the path must begin with a tilde (~).
- checkPhysicalUrlAccess
- Type: System::Boolean
If this property is set to false, authorization rules will be applied to the request URL and not to the URL of the physical page. If this property is set to true, authorization rules will be applied to both the request URL and to the URL of the physical page.
| Exception | Condition |
|---|---|
| ArgumentException | The virtualPath parameter is nullptr or is an empty string or does not start with "~/". |
By default, the CheckPhysicalUrlAccess property is true. Therefore, if you want authorization rules to be applied to both the URL of the physical page and to the route URL, you can use the PageRouteHandler(String) constructor instead of this constructor.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: