예제 #1
0
 public AudioRecorderService()
     : base()
 {
     //Toast.MakeText(this.ApplicationContext, "ctor", ToastLength.Long).Show();
     this.worker = new AudioRecorderBackroundWorker(Client);
     this.Start();
 }
예제 #2
0
 public AudioRecorderService(INetworkClient client)
     : base()
 {
     this.worker = new AudioRecorderBackroundWorker(client);
 }