[]
Indicates that the properties of an object of a class still return correct property values after the object has been deleted from the collection it belonged to.
[AttributeUsage(AttributeTargets.Class, Inherited = true, AllowMultiple = false)]
public sealed class DeletedStateIsAvailableAttribute : Attribute, _Attribute
This attribute is used with classes of elements of IndexedCollection<T> and other collections implementing IObservableSource<T>. It gives you a way of changing the value of IsDeletedStateAvailable without having to create a full-blown custom implementation of the IObservableSource<T> interface.
Name | Description |
---|---|
DeletedStateIsAvailableAttribute(bool) | Initializes a new instance of the DeletedStateIsAvailableAttribute class. |
Name | Description |
---|---|
IsAvailable | true if the properties of an object of the class still return correct property values after the object has been deleted from the collection it belonged to. |