RemoteController.Start C# (CSharp) 메소드

Start() 공개 메소드

public Start ( ) : void
리턴 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