Show / Hide Table of Contents

Class ConverterResult

The base result class for converter related stuff.

Inheritance
System.Object
ConverterResult
SerializationResult
ValidationResult
Namespace: Conizi.Model.Core.Entities
Assembly: Conizi.Model.Core.dll
Syntax
public abstract class ConverterResult : object

Properties

Content

The content/result of the operation as string

Declaration
public string Content { get; set; }
Property Value
Type Description
System.String

File

Filename or path of file was processed

Declaration
public string File { get; set; }
Property Value
Type Description
System.String

HasValidationErrors

Validation errors available

Declaration
public bool HasValidationErrors { get; }
Property Value
Type Description
System.Boolean

Model

The type of the model was used during the processing

Declaration
public Type Model { get; set; }
Property Value
Type Description
Type

Schema

The JSON definition of the involved schema

Declaration
public string Schema { get; set; }
Property Value
Type Description
System.String

ValidationErrors

A list of validation errors

Declaration
public IList<string> ValidationErrors { get; }
Property Value
Type Description
IList<System.String>
Back to top Generated by DocFX