public bool Equals(UrlRequest other)
 {
     if (other == null)
     {
         return(false);
     }
     return(string.Equals(RequestUrl.Trim(TRIM_CHARS), other.RequestUrl.Trim(TRIM_CHARS), StringComparison.InvariantCultureIgnoreCase));
 }