Class CacheErrorEventArgs
Represents the event arguments for errors during cache operations.
Inheritance
System.Object
System.EventArgs
CacheErrorEventArgs
Inherited Members
System.EventArgs.Empty
Namespace: Manina.Windows.Forms
Assembly: ImageListView.dll
Syntax
[Serializable]
[ComVisible(true)]
public class CacheErrorEventArgs : EventArgs
Constructors
| Improve this Doc View SourceCacheErrorEventArgs(ImageListViewItem, Exception, CacheThread)
Initializes a new instance of the CacheErrorEventArgs class.
Declaration
public CacheErrorEventArgs(ImageListViewItem item, Exception error, CacheThread cacheThread)
Parameters
Type | Name | Description |
---|---|---|
ImageListViewItem | item | The ImageListViewItem that is associated with this error. |
System.Exception | error | The error that occurred during an asynchronous operation. |
CacheThread | cacheThread | The thread raising the error. |
Properties
| Improve this Doc View SourceCacheThread
Gets the thread raising the error.
Declaration
public CacheThread CacheThread { get; }
Property Value
Type | Description |
---|---|
CacheThread |
Error
Gets a value indicating which error occurred during an asynchronous operation.
Declaration
public Exception Error { get; }
Property Value
Type | Description |
---|---|
System.Exception |
Item
Gets the ImageListViewItem that is associated with this error. This parameter can be null.
Declaration
public ImageListViewItem Item { get; }
Property Value
Type | Description |
---|---|
ImageListViewItem |