CodeFactory for Windows CodeFactory for Windows
CodeFactory for Windows CodeFactory for Windows
CodeFactory

Search Results for

    Class PackageReadResult<T>

    Data class that returns the results from reading from different parts of a Code Factory package.

    Inheritance
    object
    PackageReadResult<T>
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    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
    © CodeFactory, LLC. All rights reserved.