void OnImageReceived(IMediaFile file) { if (file == null) { this._userDialogService.Alert("Photo Cancelled"); } else { this.Image = ImageSource.FromFile(file.Path); _imageBytes = file.GetBytes(); } }