Show / Hide Table of Contents

Class ProgressArgs

Arguments for a progress callback function.

public record ProgressArgs : IEquatable<ProgressArgs>

Namespace: Au.Types
Assembly: Au.dll
Inheritance
object
ProgressArgs

Constructors

Name Description
ProgressArgs(long, long, int)

Properties

Name Description
Cancel

The callback function can use this to cancel the operation.

Current

The current value.

Percent

Current * 100 / Total. Or 0 if unknown.

Total

The max expected value. Or 0 if unknown.