示例#1
0
 public SearchablePathElement(SearchablePathElement previous) : base(previous)
 {
 }
示例#2
0
 public DictPathElement(SearchablePathElement previous, object key) : base(previous)
 {
     this.Key = key;
 }
示例#3
0
 public PathElement(SearchablePathElement previous)
 {
     this.Previous = previous;
 }
示例#4
0
 public ArrayPathElement(SearchablePathElement previous, int index) : base(previous)
 {
     this.Index = index;
 }