Interface IVsCodeFactoryLoadStatus
Status of loading all code factory visual studio commands from a CFA configuration.
Namespace: CodeFactory.WinVs.Loader
Assembly: CodeFactory.WinVs.dll
Syntax
public interface IVsCodeFactoryLoadStatus
Properties
ErrorMessages
The error messages that was captured while trying to load the code factory commands. This will be null if
Declaration
List<string> ErrorMessages { get; }
Property Value
| Type | Description |
|---|---|
| List<string> |
HasErrors
Flag that determines if errors occurred while loading the code factory commands.
Declaration
bool HasErrors { get; }
Property Value
| Type | Description |
|---|---|
| bool |
IsLoaded
Flag that determines if visual studio commands were able to be loaded for the code factory package.
Declaration
bool IsLoaded { get; }
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
IEnumerable<IVsCommandInformation> VisualStudioFactoryActions { get; }
Property Value
| Type | Description |
|---|---|
| IEnumerable<IVsCommandInformation> |