Click or drag to resize

FileReloader Class

FileReloader is an implementation of the IImageReloader interface. It encapsulates information about an image stored in a file system and can reload that image at any point.
Inheritance Hierarchy
SystemObject
  Atalasoft.ImagingFileReloader

Namespace:  Atalasoft.Imaging
Assembly:  Atalasoft.dotImage (in Atalasoft.dotImage.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax
public class FileReloader : IImageReloader, 
	IDisposable

The FileReloader type exposes the following members.

Constructors
  NameDescription
Public methodFileReloader(AtalaImage)
Initializes a new instance of the FileReloader class.
Public methodFileReloader(String, Int32)
Initializes a new instance of the FileReloader class.
Public methodFileReloader(AtalaImage, ImageEncoder)
Initializes a new instance of the FileReloader class.
Public methodFileReloader(AtalaImage, String)
Initializes a new instance of the FileReloader class.
Public methodFileReloader(AtalaImage, String, ImageEncoder)
Constructs a new FileReloader object.
Top
Properties
  NameDescription
Public propertyPath
Gets the path to the file referenced by this reloader.
Top
Methods
  NameDescription
Public methodDispose
Dispose releases resources associated with this class.
Protected methodDispose(Boolean)
Releases unmanaged and - optionally - managed resources.
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodReload
Reload the image into memory.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Remarks
This class is used by the FileSystemImageSource object, but any ImageSource that wants to implement a file system cache could use this object.
See Also