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