RemoteController.Start C# (CSharp) Method

Start() public method

public Start ( ) : void
return void
    void Start()
    {
    }

Usage Example

示例#1
0
        private Task <SystemRecycled> start(string projectName)
        {
            _project = new Project
            {
                ProjectPath = TestingContext.FindParallelDirectory(projectName)
            };

            _controller = new RemoteController(_project, new ProcessRunnerSystemLauncher(_project));

            return(_controller.Start());
        }
All Usage Examples Of RemoteController::Start