Class ConverterResult
The base result class for converter related stuff.
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> |