Table of Contents

Class AsyncLoadingBaseDC<T, ProgressBar>

Namespace
SunamoDevCode._public
Assembly
SunamoDevCode.dll

Base class for asynchronous loading operations with progress tracking.

public class AsyncLoadingBaseDC<T, ProgressBar>

Type Parameters

T

Type of the status object.

ProgressBar

Type of the progress bar control.

Inheritance
AsyncLoadingBaseDC<T, ProgressBar>
Derived
Inherited Members
Extension Methods

Properties

ProcessedCount

Gets or sets the count of processed items.

public long ProcessedCount { get; set; }

Property Value

long

ProgressBarInstance

Gets or sets the progress bar instance for displaying load progress.

public ProgressBar ProgressBarInstance { get; set; }

Property Value

ProgressBar

StatusAfterLoad

Gets or sets the action to execute after load operation completes.

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

Property Value

Action<T>