Start() public method

public Start ( ) : bool
return bool
Exemplo n.º 1
0
 private void OnInitialised(BthDevice connection)
 {
     if (OnDeviceArrival(connection))
     {
         connection.HidReportReceived += OnHidReportReceived;
         connection.Start();
     }
 }
Exemplo n.º 2
0
 private void OnInitialised(BthDevice Connection)
 {
     if (LogArrival(Connection))
     {
         Connection.Report += On_Report;
         Connection.Start();
     }
 }