RequestImage() public method

Requests an image to be loaded from the network
public RequestImage ( Uri uri, IImageUpdated notify, string>.IDictionary headers = null ) : UIImage
uri System.Uri /// The URI for the image to load ///
notify IImageUpdated /// A class implementing the IImageUpdated interface that will be invoked when the image has been loaded ///
headers string>.IDictionary
return UIImage
 /// <summary>
 ///   Requests an image to be loaded using the default image loader
 /// </summary>
 /// <param name="uri">
 /// The URI for the image to load
 /// </param>
 /// <param name="notify">
 /// A class implementing the IImageUpdated interface that will be invoked when the image has been loaded
 /// </param>
 /// <returns>
 /// If the image has already been downloaded, or is in the cache, this will return the image as a UIImage.
 /// </returns>
 public static UIImage DefaultRequestImage(Uri uri, IImageUpdated notify, IDictionary <string, string> headers = null)
 {
     if (DefaultLoader == null)
     {
         DefaultLoader = new ImageLoader(50, 4 * 1024 * 1024);
     }
     return(DefaultLoader.RequestImage(uri, notify, headers));
 }