Show / Hide Table of Contents

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 Source

CacheErrorEventArgs(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 Source

CacheThread

Gets the thread raising the error.

Declaration
public CacheThread CacheThread { get; }
Property Value
Type Description
CacheThread
| Improve this Doc View Source

Error

Gets a value indicating which error occurred during an asynchronous operation.

Declaration
public Exception Error { get; }
Property Value
Type Description
System.Exception
| Improve this Doc View Source

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
Back to top Copyright © 2018 Özgür Özçıtak