Table of Contents

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

int

ResetThreshold

The sort reset threshold ie the number of changes before a reset is fired.

public int ResetThreshold { readonly get; init; }

Property Value

int

UseBinarySearch

Use binary search when the result of the comparer is a pure function.

public bool UseBinarySearch { readonly get; init; }

Property Value

bool

Methods

Equals(SortAndPageOptions)

public readonly bool Equals(SortAndPageOptions other)

Parameters

other SortAndPageOptions

Returns

bool

Equals(object)

public override readonly bool Equals(object obj)

Parameters

obj object

Returns

bool

GetHashCode()

public override readonly int GetHashCode()

Returns

int

ToString()

public override readonly string ToString()

Returns

string

Operators

operator ==(SortAndPageOptions, SortAndPageOptions)

public static bool operator ==(SortAndPageOptions left, SortAndPageOptions right)

Parameters

left SortAndPageOptions
right SortAndPageOptions

Returns

bool

operator !=(SortAndPageOptions, SortAndPageOptions)

public static bool operator !=(SortAndPageOptions left, SortAndPageOptions right)

Parameters

left SortAndPageOptions
right SortAndPageOptions

Returns

bool