JackSharp.Controller.Start C# (CSharp) Method

Start() public method

Activates the client and connects to Jack.
public Start ( bool startServer = false ) : bool
startServer bool If [true], the client will start Jack if it is not running.
return bool
        public new bool Start(bool startServer = false)
        {
            return base.Start (startServer);
        }

Usage Example

示例#1
0
 public virtual void StartingServer()
 {
     using (Controller controller = new Controller ("testController")) {
         controller.Start (true);
         Thread.Sleep (100);
         Assert.IsTrue (controller.IsConnectedToJack);
         controller.Stop ();
     }
 }
All Usage Examples Of JackSharp.Controller::Start