Bloom.HtmlThumbNailer.GetThumbnailAsync C# (CSharp) Method

GetThumbnailAsync() public method

public GetThumbnailAsync ( string folderForThumbNailCache, string key, HtmlDom document, ThumbnailOptions options, Action callback, Action errorCallback ) : void
folderForThumbNailCache string
key string whatever system you want... just used for caching
document Bloom.Book.HtmlDom
options ThumbnailOptions
callback Action
errorCallback Action
return void
        public void GetThumbnailAsync(string folderForThumbNailCache, string key, HtmlDom document,
			ThumbnailOptions options, Action<Image> callback, Action<Exception> errorCallback)
        {
            GetThumbnail(folderForThumbNailCache, key, document, options, callback, errorCallback, true);
        }