SqlCeRowUpdatedEventHandler Delegate

Note: This namespace, class, or member is supported only in version 1.1 of the .NET Framework.

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.

Parameters [Visual Basic, C#, C++]

The declaration of your event handler must have the same parameters as the SqlCeRowUpdatedEventHandler delegate declaration.

Remarks

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 Events and Delegates.

Requirements

Namespace: System.Data.SqlServerCe

Platforms: .NET Compact Framework

Assembly: System.Data.Sqlserverce (in System.Data.Sqlserverce.dll)

See Also

System.Data.SqlServerCe Namespace

Syntax based on .NET Framework version 1.1.
Documentation version 1.1.1.

Send comments on this topic.

© Microsoft Corporation. All rights reserved.