Click or drag to resize

UrlPattern Constructor

Initializes a new instance of UrlPattern.

Namespace:  Mastersign.Bench
Assembly:  BenchLib (in BenchLib.dll) Version: 0.22.0.0 (0.22.0.0)
Syntax
public UrlPattern(
	Regex host,
	Regex path,
	IDictionary<string, Regex> query
)

Parameters

host
Type: System.Text.RegularExpressionsRegex
A regular expression for the host part of an URL or null.
path
Type: System.Text.RegularExpressionsRegex
A regular expression for the path part of an URL or null.
query
Type: System.Collections.GenericIDictionaryString, Regex
A dictionary with regular expressions, which must match the query arguments of an URL, or null.
See Also