Interface IModelStatus
Status information about a code factory model that has been created.
Namespace: CodeFactory
Assembly: CodeFactory.dll
Syntax
public interface IModelStatus
Properties
| Improve this Doc View SourceHasErrors
Flag that determines if this model or one of the children of this model has an error.
Declaration
bool HasErrors { get; }
Property Value
Type | Description |
---|---|
bool |
IsLoaded
Flag that determines if this model was able to load.
Declaration
bool IsLoaded { get; }
Property Value
Type | Description |
---|---|
bool |
Methods
| Improve this Doc View SourceGetErrors()
Gets the ModelLoadException from the current model and all child models of this model.
Declaration
IReadOnlyList<ModelLoadException> GetErrors()
Returns
Type | Description |
---|---|
IReadOnlyList<ModelLoadException> | Returns a IReadOnlyList<T> of the ModelLoadException exceptions or an empty list if no exceptions exist. |