public RqFile(RqWrap src, RsWrap dest, string rootFileDirectory) { _src = src; _dest = dest; root = rootFileDirectory; }
public RlRegex(RqWrap request, Regex path) { _request = request; _path = path; }
public RqWithSession(RqWrap original, SWrap session) { _original = original; _session = session; }
public RqWithResponse(RqWrap origin, Response response) { _origin = origin; _response = response; }
public RqWithParamsInPath(RqWrap origin, Regex ruleForParameters) { _origin = origin; _rule = ruleForParameters; }