public XmlRpcBasicDOSProtector(XmlRpcMethod normalMethod, XmlRpcMethod throttledMethod,BasicDosProtectorOptions options)
        {
            _normalMethod = normalMethod;
            _throttledMethod = throttledMethod;
           
            _options = options;
            _dosProtector = new BasicDOSProtector(_options);

        }
 protected BaseStreamHandlerBasicDOSProtector(string httpMethod, string path, string name, string description, BasicDosProtectorOptions options)
     : base(httpMethod, path, name, description)
 {
     _options = options;
     _dosProtector = new BasicDOSProtector(_options);
 }