Bloom.Edit.PageListView.UpdateThumbnailAsync C# (CSharp) Method

UpdateThumbnailAsync() public method

public UpdateThumbnailAsync ( IPage page ) : void
page IPage
return void
        public void UpdateThumbnailAsync(IPage page)
        {
            Logger.WriteMinorEvent("Updating thumbnail for page");

            //else, it just gives us the cached copy
            _thumbNailList.Thumbnailer.PageChanged(page.Id);
            _thumbNailList.UpdateThumbnailAsync(page);
        }

Usage Example

Example #1
0
 public void UpdateThumbnailAsync(IPage page)
 {
     _pageListView.UpdateThumbnailAsync(page);
 }