Revenj.Http.RouteMatch.RouteMatch C# (CSharp) Method

RouteMatch() public method

public RouteMatch ( string orderedArgs, string>.KeyValuePair boundVars, string>.Dictionary queryParams, string rawUrl ) : System
orderedArgs string
boundVars string>.KeyValuePair
queryParams string>.Dictionary
rawUrl string
return System
        public RouteMatch(
            string[] orderedArgs,
            KeyValuePair<string, string>[] boundVars,
            Dictionary<string, string> queryParams,
            string rawUrl)
        {
            this.OrderedArgs = orderedArgs;
            this.BoundVars = boundVars;
            this.QueryParams = queryParams;
            this.RawUrl = rawUrl;
        }

Same methods

RouteMatch::RouteMatch ( string orderedArgs, string>.KeyValuePair boundVars, string rawUrl ) : System