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