Table of Contents

Class SchemaComparerResults

Namespace
Dynamicweb.DataIntegration.Integration
Assembly
Dynamicweb.DataIntegration.dll

Stores errors found in Schemas/Mapping

public class SchemaComparerResults
Inheritance
SchemaComparerResults
Inherited Members

Constructors

SchemaComparerResults()

Default constructor

public SchemaComparerResults()

Properties

Errors

List of errors

public List<SchemaComparerResult> Errors { get; }

Property Value

List<SchemaComparerResult>

ErrorsFound

Shows if any error was found

public bool ErrorsFound { get; }

Property Value

bool

ErrorsInMappingFound

Shows if any mapping error was found

public bool ErrorsInMappingFound { get; }

Property Value

bool

ErrorsOnlyInMappingFound

Shows if any kind of error was found

public bool ErrorsOnlyInMappingFound { get; }

Property Value

bool

Methods

Add(SchemaComparerResult)

Adds schema compare result

public void Add(SchemaComparerResult comparerResult)

Parameters

comparerResult SchemaComparerResult

SchemaComparerResult object instance

Add(List<SchemaComparerResult>)

Adds list of schema compare results

public void Add(List<SchemaComparerResult> results)

Parameters

results List<SchemaComparerResult>

List of SchemaComparerResult

To top