Exemplo n.º 1
0
 /// <summary>
 /// 
 /// </summary>
 /// <param name="key"></param>
 /// <returns></returns>
 public SearchResult Search(SearchByValueCommandKey key, String value)
 {
     var cm = new SearchByValueCommand();
     cm.Key = key;
     cm.Value = value;
     return this.Search(cm);
 }
Exemplo n.º 2
0
 public SearchByValueCommand(SearchByValueCommandKey key, String value, Encoding encoding)
 {
     this.Key      = SearchByValueCommandKey.Text;
     this.Value    = "";
     this.Encoding = encoding;
 }
Exemplo n.º 3
0
 public SearchByValueCommand(SearchByValueCommandKey key, String value, Encoding encoding)
 {
     this.Key = SearchByValueCommandKey.Text;
     this.Value = "";
     this.Encoding = encoding;
 }
Exemplo n.º 4
0
 public SearchByValueCommand(SearchByValueCommandKey key, String value)
     : this(key, value, Encoding.UTF8)
 {
 }
Exemplo n.º 5
0
 public SearchByValueCommand(SearchByValueCommandKey key, String value)
     : this(key, value, Encoding.UTF8)
 {
 }