Пример #1
0
 public ELSBaseProxy(Uri[] nodes, string indexname, string doctype)
 {
     this.elsManagerClient = new ELSManagerClient(nodes);
     this.indexName        = indexname;
     this.strDocType       = doctype;
 }
Пример #2
0
 public ELSBaseProxy(string elsconstring, string indexname, string doctype)
 {
     this.elsManagerClient = new ELSManagerClient(elsconstring);
     this.indexName        = indexname;
     this.strDocType       = doctype;
 }
Пример #3
0
 public ELSBaseProxy(Uri[] nodes)
 {
     this.elsManagerClient = new ELSManagerClient(nodes);
 }
Пример #4
0
 public ELSBaseProxy(string elsconstring)
 {
     this.elsManagerClient = new ELSManagerClient(elsconstring);
 }