Used to hold "old" currency info when DataLoadMode is Asynchronous and we need to refresh the currency after the load is complete. This class is not supposed to be used directly from your code.
Definition
Namespace:Telerik.Windows.Data
Assembly:Telerik.Windows.Data.dll
Syntax:
C#
protected sealed class QueryableCollectionView.CurrencyRefreshInfo
Inheritance: objectQueryableCollectionView.CurrencyRefreshInfo
Constructors
Initializes a new instance of the QueryableCollectionView.CurrencyRefreshInfo class.
C#
public CurrencyRefreshInfo(bool oldIsCurrentAfterLast, bool oldIsCurrentBeforeFirst, int oldCurrentPosition, object oldCurrentItem)
The old IsCurrentAfterLast.
oldIsCurrentBeforeFirstboolThe old IsCurrentBeforeFirst.
oldCurrentPositionintThe old current position.
oldCurrentItemobjectThe old current item.
Properties
OldCurrentItem.
C#
public object OldCurrentItem { get; }
OldCurrentPosition.
C#
public int OldCurrentPosition { get; }
OldIsCurrentAfterLast.
C#
public bool OldIsCurrentAfterLast { get; }
OldIsCurrentBeforeFirst.
C#
public bool OldIsCurrentBeforeFirst { get; }