Class VsCodeFactoryLoadStatus
Data model that implements the interface IVsCodeFactoryLoadStatus
Implements
Inherited Members
Namespace: CodeFactory.WinVs.Loader
Assembly: CodeFactory.WinVs.dll
Syntax
public class VsCodeFactoryLoadStatus : IVsCodeFactoryLoadStatus
Properties
ErrorMessages
The error messages that was captured while trying to load the code factory commands. This will be null if
Declaration
public List<string> ErrorMessages { get; set; }
Property Value
| Type | Description |
|---|---|
| List<string> |
HasErrors
Flag that determines if errors occurred while loading the code factory commands.
Declaration
public bool HasErrors { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
IsLoaded
Flag that determines if visual studio commands were able to be loaded for the code factory package.
Declaration
public bool IsLoaded { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
VisualStudioFactoryActions
Enumeration of the factory commands that were loaded. This will be an empty enumeration if IsLoaded is false.
Declaration
public IEnumerable<IVsCommandInformation> VisualStudioFactoryActions { get; set; }
Property Value
| Type | Description |
|---|---|
| IEnumerable<IVsCommandInformation> |