public VerbRestrictingMapHandler(IHttpHandler handler, IEnumerable <string> verbs) : base(handler) { this.match = new VerbRestrictingMatchRule(verbs); }
public UrlBaseMapHandler(IHttpHandler handler, IEnumerable <string> partialUris) : base(handler) { this.match = new UrlBaseMatchRule(partialUris); }
public IPNetworkRestrictingMapHanlder(IHttpHandler handler, IIPFilter ipFilter) : base(handler) { MethodContract.NotNull(ipFilter, nameof(ipFilter)); this.match = new IpNetworkRestrictingMatchRule(ipFilter); }
public UrlBaseMapHandler(IHttpHandler handler, params string[] partialUris) : base(handler) { this.match = new UrlBaseMatchRule(partialUris); }
public VerbRestrictingMapHandler(IHttpHandler handler, params string[] verbs) : base(handler) { this.match = new VerbRestrictingMatchRule(verbs); }