/// <summary> /// New query operator part. /// </summary> /// <param name="part">The condition part that is wrapping this.</param> protected internal QueryConditionPartPart(QueryConditionPart part) : base(part.Query) { ConditionPart = part; }
/// <summary> /// New query matcher part. /// </summary> /// <param name="property">The property that will be matched.</param> /// <param name="part">The condition part that is wrapping this.</param> internal QueryMatcherPart(AutomationProperty property, QueryConditionPart part) : base(part) { Property = property; }