Class PackageReadResult<T>
Data class that returns the results from reading from different parts of a Code Factory package.
Inherited Members
Namespace: CodeFactory.WinVs.Loader
Assembly: CodeFactory.WinVs.dll
Syntax
public class PackageReadResult<T> where T : class
Type Parameters
| Name | Description |
|---|---|
| T |
Properties
Error
Error message that occurred while reading from the package. This will be null if there is no error.
Declaration
public string Error { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
HasError
Flag that determines if an error has occurred during the reading of a part of a package.
Declaration
public bool HasError { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
Result
The result that was returned from reading the package. This will be null if there was an error.
Declaration
public T Result { get; set; }
Property Value
| Type | Description |
|---|---|
| T |