LinqDataSourceDisposeEventArgs Class
Provides data for the ContextDisposing event.
System::EventArgs
System.ComponentModel::CancelEventArgs
System.Web.UI.WebControls::LinqDataSourceDisposeEventArgs
Assembly: System.Web.Extensions (in System.Web.Extensions.dll)
The LinqDataSourceDisposeEventArgs type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | LinqDataSourceDisposeEventArgs | Initializes a new instance of the LinqDataSourceDisposeEventArgs class. |
| Name | Description | |
|---|---|---|
![]() | Cancel | Gets or sets a value indicating whether the event should be canceled. (Inherited from CancelEventArgs.) |
![]() | ObjectInstance | Gets the data context object to dispose. |
| Name | Description | |
|---|---|---|
![]() | Equals(Object) | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
You create a handler for the ContextDisposing event to perform clean-up that is specific to the data context object before the object is destroyed. The LinqDataSourceDisposeEventArgs object contains the data context object that is used when you are selecting, updating, inserting, or deleting data. The ContextDisposing event is raised during the Unload event before the LinqDataSource control disposes the context object.
The data context object is the type specified in the ContextTypeName property or the type set to the ObjectInstance of the LinqDataSourceContextEventArgs class.
When the LinqDataSource control interacts with a database, the ContextTypeName property is set to the DataContext object that represents the database. When the LinqDataSource control interacts with an in-memory data collection, the ContextTypeName property is set to the object that contains the data collection.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.


