Ejemplo n.º 1
0
 public LookupInSpecBuilder GetFull()
 {
     Validate("GetFull", "");
     Specs.Add(LookupInSpec.GetFull());
     return(this);
 }
Ejemplo n.º 2
0
 public LookupInSpecBuilder Count(string path, bool isXattr = false)
 {
     Validate("Count", path);
     Specs.Add(LookupInSpec.Count(path, isXattr));
     return(this);
 }
Ejemplo n.º 3
0
 public LookupInSpecBuilder Exists(string path, bool isXattr = false)
 {
     Validate("Exists", path);
     Specs.Add(LookupInSpec.Exists(path, isXattr));
     return(this);
 }
Ejemplo n.º 4
0
 public LookupInSpecBuilder GetFull()
 {
     Specs.Add(LookupInSpec.GetFull());
     return(this);
 }
Ejemplo n.º 5
0
 public LookupInSpecBuilder Get(string path, bool isXattr = false)
 {
     Specs.Add(LookupInSpec.Get(path, isXattr));
     return(this);
 }
Ejemplo n.º 6
0
 private T CreateSubDocException <T>(LookupInSpec spec, int index)
     where T : SubdocExceptionException, new() =>