|
Public Member Functions |
| int | Add (Exception exception) |
| | Adds a specified exception to this collection.
|
| bool | Contains (Exception exception) |
| | Determines whether the ExceptionCollection contains a specific element.
|
| void | CopyTo (Exception[] array, int index) |
| | Copies the entire ExceptionCollection to a compatible one-dimensional Array, starting at the specified index of the target array.
|
| int | IndexOf (Exception exception) |
| | Searches for the specified Exception and returns the zero-based index of the first occurrence within the entire ExceptionCollection.
|
| void | Insert (int index, Exception exception) |
| | Inserts an Exception into this collection at a specified index.
|
| void | Remove (Exception exception) |
| | Removes a specified Exception from this collection.
|
Properties |
| Exception | this [int index] |
| | Gets or sets the exception at a specified index.
In C#, this property is the indexer for the class.
.
|
| Exception | LastException |
| | Returns the last exception added through the Add method.
|