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