SqlCeInfoMessageEventHandler 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 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.

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

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

Remarks

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 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.