本文整理汇总了C#中RestClient.LoadThumbnail方法的典型用法代码示例。如果您正苦于以下问题:C# RestClient.LoadThumbnail方法的具体用法?C# RestClient.LoadThumbnail怎么用?C# RestClient.LoadThumbnail使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类RestClient
的用法示例。
在下文中一共展示了RestClient.LoadThumbnail方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ImageViewController
public ImageViewController (string path, string name)
{
View.BackgroundColor = UIColor.White;
photoPath = path;
imageView = new UIImageView (CGRect.Empty);
imageView.Image = UIImage.FromFile ("dropbox_not_found.png");
imageView.TranslatesAutoresizingMaskIntoConstraints = false;
View.Add (imageView);
AddConstraints ();
// Create a rest client that handle the download of the image
restClient = new RestClient (Session.SharedSession);
// Handle the download of the image
restClient.ThumbnailLoaded += (sender, e) => imageView.Image = UIImage.FromFile (e.DestPath);
// Handle if something went wrong with the download of the image
restClient.LoadThumbnailFailed += (sender, e) => {
imageView.Image = UIImage.FromFile ("dropbox_not_found.png");
// Try to download the image again if the user asks for it
var alertView = new UIAlertView ("Hmm...", "Something went wrong when trying to show the image...", null, "Not now", new [] { "Try Again" });
alertView.Clicked += (avSender, avE) => {
if (avE.ButtonIndex == 1)
restClient.LoadThumbnail (path, "iphone_bestfit", PhotoPath ());
};
alertView.Show ();
};
// Show the image if you have downloaded previously, otherwise,
// download the image and save it in the tmp folder
if (File.Exists (PhotoPath (name)))
imageView.Image = UIImage.FromFile (PhotoPath (name));
else
restClient.LoadThumbnail (photoPath, "iphone_bestfit", PhotoPath (name));
}