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