ISessionStateItemCollection.Dirty Property
.NET Framework 3.0
Gets or sets a value indicating whether the collection has been marked as changed.
Namespace: System.Web.SessionState
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
/** @property */ boolean get_Dirty () /** @property */ void set_Dirty (boolean value)
function get Dirty () : boolean function set Dirty (value : boolean)
Not applicable.
Property Value
true if the SessionStateItemCollection contents have been changed; otherwise, false.The Dirty property is used by the SessionStateModule to determine whether the values in an ISessionStateItemCollection implementation have been modified.
In implementing the ISessionStateItemCollection interface, you should initialize the Dirty property as false and set the Dirty property to true in the implementations of the Remove, RemoveAt, or Clear methods.
Community Additions
ADD
Show: