public SearchOptions(NameValueCollection nameValueCollection, int?maxPageCount = null, bool useRelativeDateSpans = true) : this(SearchOptions.ParseQuery(nameValueCollection), maxPageCount, useRelativeDateSpans) { }
public SearchOptions(string queryString, int?maxPageCount = null, bool useRelativeDateSpans = true) : this(SearchOptions.ParseQuery(queryString), maxPageCount, useRelativeDateSpans) { }
public SearchOptions(string queryString) : this(SearchOptions.ParseQuery(queryString)) { }