Skip to content

CacheProgressBaseEventArgs Class

Base class for cache progress events.

PropertyDescription
OverallPercentageGets the overall percentage of progress of caching.
PackageOrContainerIdGets the identifier of the container or package.
PayloadIdGets the identifier of the payload.
ProgressGets the number of bytes cached thus far.
TotalGets the total bytes to cache.
WixToolset.Mba.Core.dll version 4.0.5+b9b2f1b4c69a1b509d487dc950b30b4ec9b0d040

Gets the overall percentage of progress of caching.

public int OverallPercentage { get; set; }

Gets the identifier of the container or package.

public string PackageOrContainerId { get; set; }

Gets the identifier of the payload.

public string PayloadId { get; set; }

Gets the number of bytes cached thus far.

public System.Int64 Progress { get; set; }

Gets the total bytes to cache.

public System.Int64 Total { get; set; }