DataSourceViewOperationCallback Delegate (System.Web.UI)

Switch View :
ScriptFree
.NET Framework Class Library
DataSourceViewOperationCallback Delegate

Represents the asynchronous callback method that a data-bound control supplies to a data source view for asynchronous insert, update, or delete data operations.

Namespace:  System.Web.UI
Assembly:  System.Web (in System.Web.dll)
Syntax

Visual Basic (Declaration)
Public Delegate Function DataSourceViewOperationCallback ( _
	affectedRecords As Integer, _
	ex As Exception _
) As Boolean
Visual Basic (Usage)
Dim instance As New DataSourceViewOperationCallback(AddressOf HandlerMethod)
C#
public delegate bool DataSourceViewOperationCallback(
	int affectedRecords,
	Exception ex
)
Visual C++
public delegate bool DataSourceViewOperationCallback(
	int affectedRecords, 
	Exception^ ex
)
JScript
JScript does not support delegates.

Parameters

affectedRecords
Type: System.Int32
The number of records that the data operation affected.
ex
Type: System.Exception
An Exception, if one is thrown by the data operation during processing.

Return Value

Type: System.Boolean
A value indicating whether any exceptions thrown during the data operation were handled.
Remarks

By default, ASP.NET Web page and control execution is synchronous. However, data source controls can be extended to support asynchronous data retrieval and data operations. The DataSourceView object supports the Insert, Update, and Delete methods for asynchronous data processing. The DataSourceViewOperationCallback delegate is passed to the data source view by a data-bound control, so that the view can call this delegate when asynchronous processing is complete and notify the data-bound control of the operation's outcome.

Platforms

Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Version Information

.NET Framework

Supported in: 3.5, 3.0, 2.0
See Also

Reference