Esempio n. 1
0
        private async void UploadFile_Clicked(object sender, EventArgs e)
        {
            try
            {
                if (_mediaFile != null)
                {
                    await PushApiFile();
                }

                var result = await synchronizationService.SynchronizationUploadToWebAsync(Items);

                if (result)
                {
                    RemotePathLabel.Text = "Audio OK";
                }
            }
            catch (Exception ex)
            {
            }
        }