/// <summary>
 /// Initializes a new instance of SortFieldVisitor.
 /// </summary>
 /// <param name="owner">
 /// The MappedFieldResolver which owns this instance.
 /// </param>
 /// <param name="sortDescending">
 /// A flag which indicates whether or not the SortField should be set to sort descending.
 /// </param>
 internal SortFieldVisitor(MappedFieldResolver owner, bool sortDescending)
     : base(owner)
 {
     this.sortDescending = sortDescending;
 }
Пример #2
0
            /// <summary>
            /// Initializes a new instance of QuoteStrippingVisitor.
            /// </summary>
            /// <param name="owner">
            /// The FieldNameResolver which owns this instance.
            /// </param>
            protected QuoteStrippingVisitor(MappedFieldResolver owner)
            {
                Debug.Assert(null != owner, "The owner must not be null.");

                Owner = owner;
            }
Пример #3
0
 /// <summary>
 /// Initializes a new instance of QueryVisitor.
 /// </summary>
 /// <param name="owner">
 /// The FieldNameResolver which owns this instance.
 /// </param>
 internal QueryVisitor(MappedFieldResolver owner) : base(owner)
 {
 }
 /// <summary>
 /// Initializes a new instance of FieldFinder.
 /// </summary>
 /// <param name="owner">
 /// The FieldNameResolver which owns this instance.
 /// </param>
 internal FieldFinder(MappedFieldResolver owner) : base(owner)
 {
 }