Example #1
0
 public void DeleteIndex(Transaction txn, IndexSpecification.Entry entry, UpdateContext uc)
 {
     this.cont_.deleteIndex(Transaction.ToInternal(txn), entry.URI, entry.Name, entry.Index, UpdateContext.ToInternal(uc));
 }
Example #2
0
 public Results LookupIndex(Transaction txn, QueryContext context, IndexSpecification.Entry entry, Value value)
 {
     return(this.LookupIndex(txn, context, entry, value, new DocumentConfig()));
 }
Example #3
0
 public Statistics LookupStatistics(Transaction txn, IndexSpecification.Entry entry, string parent_uri, string parent_name, Value value)
 {
     return(Statistics.Create(this.cont_.lookupStatistics(Transaction.ToInternal(txn), entry.URI, entry.Name, parent_uri, parent_name, entry.Index, Value.ToInternal(value))));
 }
Example #4
0
 public Statistics LookupStatistics(Transaction txn, IndexSpecification.Entry entry, string parent_uri, string parent_name)
 {
     return(this.LookupStatistics(txn, entry, parent_uri, parent_name, null));
 }
Example #5
0
 public Statistics LookupStatistics(Transaction txn, IndexSpecification.Entry entry)
 {
     return(this.LookupStatistics(txn, entry, null));
 }
Example #6
0
 public Results LookupIndex(Transaction txn, QueryContext context, IndexSpecification.Entry entry, string parent_uri, string parent_name, Value value, DocumentConfig config)
 {
     return(Results.Create(this.cont_.lookupIndex(Transaction.ToInternal(txn), QueryContext.ToInternal(context), entry.URI, entry.Name, parent_uri, parent_name, entry.Index, Value.ToInternal(value), config.Flags)));
 }
Example #7
0
 public Results LookupIndex(Transaction txn, QueryContext context, IndexSpecification.Entry entry, string parent_uri, string parent_name)
 {
     return(this.LookupIndex(txn, context, entry, parent_uri, parent_name, null, new DocumentConfig()));
 }