Click or drag to resize

RuntimeManagerPackages Property

Gets top packages

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 IPackage[] Packages { get; }

Return Value

Type: IPackage
A package list.

Implements

IRuntimeManagerPackages
Examples
Gets packages
C#
static class Program
{
    static void Main()
    { 
        RuntimeManager rt = new RuntimeManager();
        rt.Load("C:\\Sample.ptx");
        IPackage[] packages = rt.Packages;
    } 
}
See Also