Ejemplo n.º 1
0
 public SearchAxis(int childIndex)
 {
     this.axisType  = SearchAxis.AxisType.CollectionChild;
     this.sortValue = childIndex;
 }
Ejemplo n.º 2
0
 public SearchAxis(IPropertyId propertyKey)
 {
     this.axisType    = SearchAxis.AxisType.Property;
     this.propertyKey = propertyKey;
 }
Ejemplo n.º 3
0
 protected SearchAxis(SearchAxis.AxisType axisType)
 {
     this.axisType = axisType;
 }