Class ContentDataIntegrityReport
Represents a report of data integrity issues detected in content data.
Inheritance
object
Namespace: Umbraco.Cms.Core.Models
Assembly: Umbraco.Core.dll
Syntax
public class ContentDataIntegrityReport
Constructors
View SourceContentDataIntegrityReport(IReadOnlyDictionary<int, ContentDataIntegrityReportEntry>)
Initializes a new instance of the ContentDataIntegrityReport class.
Declaration
public ContentDataIntegrityReport(IReadOnlyDictionary<int, ContentDataIntegrityReportEntry> detectedIssues)
Parameters
| Type | Name | Description |
|---|---|---|
| IReadOnlyDictionary<int, ContentDataIntegrityReportEntry> | detectedIssues | A dictionary of detected issues keyed by content ID. |
Properties
View SourceDetectedIssues
Gets a dictionary of all detected data integrity issues keyed by content ID.
Declaration
public IReadOnlyDictionary<int, ContentDataIntegrityReportEntry> DetectedIssues { get; }
Property Value
| Type | Description |
|---|---|
| IReadOnlyDictionary<int, ContentDataIntegrityReportEntry> |
FixedIssues
Gets a dictionary of issues that have been successfully fixed, keyed by content ID.
Declaration
public IReadOnlyDictionary<int, ContentDataIntegrityReportEntry> FixedIssues { get; }
Property Value
| Type | Description |
|---|---|
| IReadOnlyDictionary<int, ContentDataIntegrityReportEntry> |
Ok
Gets a value indicating whether all detected issues have been resolved or no issues were found.
Declaration
public bool Ok { get; }
Property Value
| Type | Description |
|---|---|
| bool |