Table of Contents

Class AsyncLoadingBase<T, TProgressBar>

Namespace
SunamoData.Data
Assembly
SunamoData.dll

Base class for asynchronous loading operations with progress tracking.

public class AsyncLoadingBase<T, TProgressBar>

Type Parameters

T

The type of items being loaded.

TProgressBar

The type of progress bar control.

Inheritance
AsyncLoadingBase<T, TProgressBar>
Inherited Members
Extension Methods

Properties

ProcessedCount

Gets or sets the count of processed items.

public long ProcessedCount { get; set; }

Property Value

long

ProgressBar

Gets or sets the progress bar control.

public TProgressBar ProgressBar { get; set; }

Property Value

TProgressBar

StatusAfterLoad

Gets or sets the action to execute after an item is loaded.

public Action<T> StatusAfterLoad { get; set; }

Property Value

Action<T>