Table of Contents

Class UrlIndexPathLookupResult

Namespace
Dynamicweb.Frontend.UrlHandling
Assembly
Dynamicweb.dll

Class UrlIndexPathLookupResult contains the result of resolving a URL to a URL node.

public class UrlIndexPathLookupResult
Inheritance
UrlIndexPathLookupResult
Inherited Members

Properties

Node

Gets or sets the node of this lookup.

public UrlNode Node { get; }

Property Value

UrlNode

The node.

OriginalQueryString

Gets or sets the original querystring if the URL being resolved contains querystring information, i.e. "PageNum=2" from "/products/bikes?PageNum=2".

public string OriginalQueryString { get; }

Property Value

string

The original querystring.

QueryStringFromPath

Gets the resulting querystring found in the Url index from the lookup of the path

public string QueryStringFromPath { get; }

Property Value

string

The querystring from path.

RemainingPath

Gets or sets the remaining path if the entire path was not resolved on the index. I.e. "/bikes/mountainbike" from "/home/products/bikes/products" where "/home/products/" was resolved to aa UrlNode.

public string RemainingPath { get; }

Property Value

string

The remaining path.

To top