Struct SortAndPageOptions
- Namespace
- DynamicData
- Assembly
- DynamicData.dll
Options for the sort and virtualize operator.
public struct SortAndPageOptions : IEquatable<SortAndPageOptions>
- Implements
Constructors
SortAndPageOptions()
Options for the sort and virtualize operator.
public SortAndPageOptions()
Properties
InitialCapacity
Set the initial capacity of internal sorted list.
public int InitialCapacity { readonly get; init; }
Property Value
ResetThreshold
The sort reset threshold ie the number of changes before a reset is fired.
public int ResetThreshold { readonly get; init; }
Property Value
UseBinarySearch
Use binary search when the result of the comparer is a pure function.
public bool UseBinarySearch { readonly get; init; }
Property Value
Methods
Equals(SortAndPageOptions)
public readonly bool Equals(SortAndPageOptions other)
Parameters
other
SortAndPageOptions
Returns
Equals(object)
public override readonly bool Equals(object obj)
Parameters
obj
object
Returns
GetHashCode()
public override readonly int GetHashCode()
Returns
ToString()
public override readonly string ToString()
Returns
Operators
operator ==(SortAndPageOptions, SortAndPageOptions)
public static bool operator ==(SortAndPageOptions left, SortAndPageOptions right)
Parameters
left
SortAndPageOptionsright
SortAndPageOptions
Returns
operator !=(SortAndPageOptions, SortAndPageOptions)
public static bool operator !=(SortAndPageOptions left, SortAndPageOptions right)
Parameters
left
SortAndPageOptionsright
SortAndPageOptions