Ejemplo n.º 1
0
 public async Task GetPhotoAsync(string userId, OnGetPhotoCompleted onGetPhotoCompleted)
 {
     onGetPhotoCompleted(await GetPhotoAsync(userId));
 }
Ejemplo n.º 2
0
 public void GetPhoto(string userId, OnGetPhotoCompleted onGetPhotoCompleted)
 {
 }
Ejemplo n.º 3
0
 public void GetPhoto(string userId, OnGetPhotoCompleted onGetPhotoCompleted)
 {
     System.Threading.Tasks.Task.Run(
         () => GetPhotoAsync(userId, onGetPhotoCompleted));
 }