Search Results for

    Show / Hide Table of Contents

    Class PlanValidationResultEsapiDetail

    A class for detailed plan validation result

    Inheritance
    System.Object
    PlanValidationResultEsapiDetail
    Inherited Members
    System.Object.ToString()
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    Namespace: VMS.TPS.Common.Model.Types
    Assembly: VMS.TPS.Common.Model.Types.dll
    Syntax
    public class PlanValidationResultEsapiDetail

    Constructors

    PlanValidationResultEsapiDetail(String, Boolean, String)

    Constructor for PlanValidationResultEsapiDetail class.

    Declaration
    public PlanValidationResultEsapiDetail(string messageForUser, bool isError, string code)
    Parameters
    Type Name Description
    System.String messageForUser

    Message for the user.

    System.Boolean isError

    Is this reported as a error or as a warning.

    System.String code

    Result code.

    Properties

    Code

    Detail code.

    Declaration
    public string Code { get; }
    Property Value
    Type Description
    System.String

    IsError

    Check if the result is a error (true) or a warning (false).

    Declaration
    public bool IsError { get; }
    Property Value
    Type Description
    System.Boolean

    MessageForUser

    Message for the user about the validation result detail.

    Declaration
    public string MessageForUser { get; }
    Property Value
    Type Description
    System.String
    In This Article
    Back to top