Search Results for

    Show / Hide Table of Contents
    View Source

    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 Source

    ContentDataIntegrityReport(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 Source

    DetectedIssues

    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>
    View Source

    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>
    View Source

    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
    • View Source
    In this article
    Back to top Copyright © 2016-present Umbraco
    Generated by DocFX