IImageReloader provides a mechanism to bring unloaded images back into memory. This interface is used by
ImageSource.
Namespace:
Atalasoft.Imaging
Assembly:
Atalasoft.dotImage (in Atalasoft.dotImage.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax public interface IImageReloader : IDisposable
Public Interface IImageReloader
Inherits IDisposable
The IImageReloader type exposes the following members.
Methods
| Name | Description |
---|
| Dispose | Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. (Inherited from IDisposable.) |
| Reload | Reload an image into memory. |
TopRemarks Typically, an IImageReloader is created at the same time that an image is first loaded into physical
memory. That way the IImageReloader can encapsulate all the information needed to bring that image back into memory
at a later time.
See Also