Struct SortAndBindOptions
- Namespace
- DynamicData.Binding
- Assembly
- DynamicData.dll
Options for the sort and bind operator.
public struct SortAndBindOptions : IEquatable<SortAndBindOptions>
- Implements
Constructors
SortAndBindOptions()
Options for the sort and bind operator.
public SortAndBindOptions()
Properties
InitialCapacity
Set the initial capacity of the readonly observable collection.
public int InitialCapacity { readonly get; init; }
Property Value
ResetThreshold
The 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
UseReplaceForUpdates
When possible, should replace be used instead of remove and add.
public bool UseReplaceForUpdates { readonly get; init; }
Property Value
Methods
Equals(SortAndBindOptions)
public readonly bool Equals(SortAndBindOptions other)
Parameters
other
SortAndBindOptions
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 ==(SortAndBindOptions, SortAndBindOptions)
public static bool operator ==(SortAndBindOptions left, SortAndBindOptions right)
Parameters
left
SortAndBindOptionsright
SortAndBindOptions
Returns
operator !=(SortAndBindOptions, SortAndBindOptions)
public static bool operator !=(SortAndBindOptions left, SortAndBindOptions right)
Parameters
left
SortAndBindOptionsright
SortAndBindOptions