Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

LinqDataSourceDisposeEventArgs::ObjectInstance Property

 

Gets the data context object to dispose.

Namespace:   System.Web.UI.WebControls
Assembly:  System.Web.Extensions (in System.Web.Extensions.dll)

public:
property Object^ ObjectInstance {
	Object^ get();
}

Property Value

Type: System::Object^

An object that represents the data context.

The ObjectInstance property contains the data context object that the LinqDataSource control uses for data operations. You can use the ObjectInstance property to retrieve the data context object if you want to examine the object before it is disposed.

When the LinqDataSource control interacts with a database, the ObjectInstance property is set to the DataContext object that represents the database. When the LinqDataSource control interacts with an in-memory data collection, the ObjectInstance property is set to the object that contains the data collection.

.NET Framework
Available since 3.5
Return to top
Show:
© 2017 Microsoft