Represents the conditions part of a query.
Inheritance: QueryPart
Esempio n. 1
0
 /// <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;
 }
 /// <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;
 }
Esempio n. 4
0
 /// <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;
 }