Class XmlReport
Progress report for XML extraction and loading operations.
public record XmlReport : Report, IEquatable<Report>, IEquatable<XmlReport>
- Inheritance
-
ReportXmlReport
- Implements
-
IEquatable<Report>
- Inherited Members
-
Report.ToString()Report.GetHashCode()Report.Equals(Report)Report.<Clone>$()Report.EqualityContractReport.CurrentItemCount
Remarks
Extends Wolfgang.Etl.Abstractions.Report with XML-specific progress information, including the count of skipped items.
Constructors
XmlReport(int, int)
Initializes a new instance of the XmlReport class.
public XmlReport(int currentItemCount, int currentSkippedItemCount)
Parameters
currentItemCountintThe number of items processed so far.
currentSkippedItemCountintThe number of items skipped so far.
Properties
CurrentSkippedItemCount
Gets the number of items that have been skipped during processing.
public int CurrentSkippedItemCount { get; }