Represents the method that will handle the InfoMessage event of a SqlCeConnection.
[Visual Basic] <Serializable> Public Delegate Sub SqlCeInfoMessageEventHandler( _ ByVal sender As Object, _ ByVal e As SqlCeInfoMessageEventArgs _ ) [C#] [Serializable] public delegate void SqlCeInfoMessageEventHandler( object sender, SqlCeInfoMessageEventArgs e ); [C++] [Serializable] public __gc __delegate void SqlCeInfoMessageEventHandler( Object* sender, SqlCeInfoMessageEventArgs* 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 SqlCeInfoMessageEventHandler delegate declaration.
When you create a SqlCeInfoMessageEventArgs 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)