Table of Contents

Struct Progress

Namespace
Pamoja.Update
Assembly
Pamoja.Update.dll

How much of an image has arrived.

public readonly record struct Progress : IEquatable<Progress>
Implements
Inherited Members

Constructors

Progress(uint, uint)

How much of an image has arrived.

public Progress(uint Written, uint Total)

Parameters

Written uint

The bytes stored so far.

Total uint

The total the manifest declares.

Properties

Total

The total the manifest declares.

public uint Total { get; init; }

Property Value

uint

Written

The bytes stored so far.

public uint Written { get; init; }

Property Value

uint