/// <summary> /// Initializes a new instance of the <see cref="WindowsPhoneCommandExecutor"/> class /// for the given kind of controller and device name. /// </summary> /// <param name="controllerKind">The <see cref="ControllerKind"/> value representing /// the kind of controller to create.</param> /// <param name="deviceName">The device name for which to search when connecting.</param> public WindowsPhoneCommandExecutor(ControllerKind controllerKind, string deviceName) { this.controller = new DeviceController(controllerKind, deviceName); }
/// <summary> /// Initializes a new instance of the <see cref="WindowsPhoneCommandExecutor"/> class. /// </summary> public WindowsPhoneCommandExecutor() { this.controller = new DeviceController(); }