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