Advertisement
Guest User

Untitled

a guest
Aug 2nd, 2013
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.22 KB | None | 0 0
  1. //Report operation progress changed on appropriate thread.
  2. asyncOperation.Post(delegate(object e)
  3. {
  4. if (ProductDownloadProgressChanged != null) ProductDownloadProgressChanged(downloadableProduct, progress);
  5. }, product);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement