Ejemplo n.º 1
0
 public ELSBaseProxy(Uri[] nodes, string indexname, string doctype)
 {
     this.elsManagerClient = new ELSManagerClient(nodes);
     this.indexName        = indexname;
     this.strDocType       = doctype;
 }
Ejemplo n.º 2
0
 public ELSBaseProxy(string elsconstring, string indexname, string doctype)
 {
     this.elsManagerClient = new ELSManagerClient(elsconstring);
     this.indexName        = indexname;
     this.strDocType       = doctype;
 }
Ejemplo n.º 3
0
 public ELSBaseProxy(Uri[] nodes)
 {
     this.elsManagerClient = new ELSManagerClient(nodes);
 }
Ejemplo n.º 4
0
 public ELSBaseProxy(string elsconstring)
 {
     this.elsManagerClient = new ELSManagerClient(elsconstring);
 }