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.

LinqDataSource::ContextCreated Event

 

Occurs after an instance of the context type object is created.

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

public:
event EventHandler<LinqDataSourceStatusEventArgs^>^ ContextCreated {
	void add(EventHandler<LinqDataSourceStatusEventArgs^>^ value);
	void remove(EventHandler<LinqDataSourceStatusEventArgs^>^ value);
}

Handle the ContextCreated event to examine the context type object or examine exceptions that are raised while the object is being created. You retrieve the context type object from the Result property of the LinqDataSourceStatusEventArgs object that is associated with this event. You retrieve the exception that was raised during the data operation from the Exception property.

The context type object is created during select, update, insert, and delete operations and is reused throughout the request.

There is one time when the event is not raised. This is when you programmatically set the Result property to an object during the Selecting event. An additional condition is that either the original values do not have to be stored in view state, or the object in the Result property implements the ITable interface.

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