C# Class NSoft.NFramework.Collections.C5.ViewDisposedException

An excption thrown when trying to access a view (a list view on a T:C5.IList`1 or a snapshot on a T:C5.IPersistentSorted`1) that has been invalidated by some earlier operation.

The typical scenario is a view on a list that hash been invalidated by a call to Sort, Reverse or Shuffle on some other, overlapping view or the whole list.

Inheritance: System.Exception
Show file Open project: debop/NFramework

Public Methods

Method Description
ViewDisposedException ( ) : System

Create a simple exception with no further explanation.

ViewDisposedException ( string message ) : System

Create the exception with an explanation of the reason.

Method Details

ViewDisposedException() public method

Create a simple exception with no further explanation.
public ViewDisposedException ( ) : System
return System

ViewDisposedException() public method

Create the exception with an explanation of the reason.
public ViewDisposedException ( string message ) : System
message string
return System