Bloom.BookThumbNailer.RebuildThumbNailNow C# (CSharp) Method

RebuildThumbNailNow() public method

Will make a new thumbnail (or throw) UNLESS the thumbnail is readonly, in which case it will do nothing.
public RebuildThumbNailNow ( Book book, HtmlThumbNailer thumbnailOptions ) : void
book Bloom.Book.Book
thumbnailOptions HtmlThumbNailer
return void
        public void RebuildThumbNailNow(Book.Book book, HtmlThumbNailer.ThumbnailOptions thumbnailOptions)
        {
            RebuildThumbNail(book, thumbnailOptions, (info, image) => { },
                (info, ex) =>
                {
                    throw ex;
                }, false);
        }