SessionStateItemCollection.Dirty Property

Definition

Gets or sets a value indicating whether the collection has been marked as changed.

public:
 property bool Dirty { bool get(); void set(bool value); };
public bool Dirty { get; set; }
member this.Dirty : bool with get, set
Public Property Dirty As Boolean

Property Value

true if the SessionStateItemCollection contents have been changed; otherwise, false.

Implements

Remarks

The Dirty property is used to indicate whether the contents of the SessionStateItemCollection collection have changed.

The Dirty property is set to true when an object value is set or added to the collection using the Item[] property and when one or more object values are removed from the collection using the Remove, RemoveAt, or Clear methods.

The Dirty property is also set to true when a mutable object is retrieved from the collection using the Item[] property.

Calling the Deserialize method to populate a SessionStateItemCollection collection results in the Dirty property being set to false.

Applies to

See also