ICMSPageFactoryGetPageByPath Method
|
Gets a
Page by its relative URL path.
Namespace:
Ingeniux.Runtime
Assembly:
IGXRuntimeAPI (in IGXRuntimeAPI.dll) Version: 10.3.169
Syntax ICMSRequest GetPageByPath(
HttpRequestBase request,
string path,
bool pageTypeOnly = false,
bool checkingRemaingPath = false
)
Function GetPageByPath (
request As HttpRequestBase,
path As String,
Optional pageTypeOnly As Boolean = false,
Optional checkingRemaingPath As Boolean = false
) As ICMSRequest
ICMSRequest^ GetPageByPath(
HttpRequestBase^ request,
String^ path,
bool pageTypeOnly = false,
bool checkingRemaingPath = false
)
abstract GetPageByPath :
request : HttpRequestBase *
path : string *
?pageTypeOnly : bool *
?checkingRemaingPath : bool
(* Defaults:
let _pageTypeOnly = defaultArg pageTypeOnly false
let _checkingRemaingPath = defaultArg checkingRemaingPath false
*)
-> ICMSRequest
Parameters
- request
- Type: System.WebHttpRequestBase
The Http Request - path
- Type: SystemString
The relative path of the request - pageTypeOnly (Optional)
- Type: SystemBoolean
If you only need to retrieve the preview page summary, pass in true. The default value is false. - checkingRemaingPath (Optional)
- Type: SystemBoolean
Return Value
Type:
ICMSRequestEither a redirect request if the URL is not canonical, or an actual
Page objectSee Also