Click or drag to resize

RuntimeManagerValidate Method

Validates the current project and its references and returns a list of errors and warnings.

Namespace:  OpenTestSystem.Otx.Runtime.Api
Assembly:  OpenTestSystem.Otx.Runtime.Api (in OpenTestSystem.Otx.Runtime.Api.dll) Version: 5.5.0.0 (6.1.0.31040)
Syntax
public IError[] Validate()

Return Value

Type: IError
Error list.

Implements

IRuntimeManagerValidate
Examples
Validates the current project and its references.
C#
static class Program
{
    static void Main()
    { 
        RuntimeManager rt = new RuntimeManager();
        rt.Load("C:\\Sample.ptx");
        IError[] errors = rt.Validate();
    } 
}
See Also