Represents the method that will handle the RowUpdated event of a SqlCeDataAdapter.
[Visual Basic] <Serializable> Public Delegate Sub SqlCeRowUpdatedEventHandler( _ ByVal sender As Object, _ ByVal e As SqlCeRowUpdatedEventArgs _ ) [C#] [Serializable] public delegate void SqlCeRowUpdatedEventHandler( object sender, SqlCeRowUpdatedEventArgs e ); [C++] [Serializable] public __gc __delegate void SqlCeRowUpdatedEventHandler( Object* sender, SqlCeRowUpdatedEventArgs* e );
[JScript] In JScript, you can use the delegates in the .NET Framework, but you cannot define your own.
The declaration of your event handler must have the same parameters as the SqlCeRowUpdatedEventHandler delegate declaration.
The handler is not required to perform any action, and your code should avoid generating exceptions or allowing exceptions to propagate to the calling method. Any exception that reaches the caller is ignored.When you create a SqlCeRowUpdatedEventArgs delegate, you identify the method that will handle the event. To associate the event with your event handler, add an instance of the delegate to the event. The event handler is called whenever the event occurs, unless you remove the delegate. For more information about event handler delegates, see
Namespace: System.Data.SqlServerCe
Platforms: .NET Compact Framework - Windows CE .NET
Assembly: System.Data.Sqlserverce (in System.Data.Sqlserverce.dll)