Start() public méthode

public Start ( ) : bool
Résultat bool
Exemple #1
0
 private void OnInitialised(BthDevice connection)
 {
     if (OnDeviceArrival(connection))
     {
         connection.HidReportReceived += OnHidReportReceived;
         connection.Start();
     }
 }
Exemple #2
0
 private void OnInitialised(BthDevice Connection)
 {
     if (LogArrival(Connection))
     {
         Connection.Report += On_Report;
         Connection.Start();
     }
 }