private SrvRequest(HttpContext http, string route, IAnyHandler handler) { _http = http; _route = route; _handler = handler; _trackingId = 3.GenerateId(); }
public static ISrvRequest New(HttpContext http, string route, IAnyHandler handler) { return (new SrvRequest(http, route, handler)); }