Event Handling The SybaseInfoMessageEventHandler event is a delegate that represents the method that handles the InfoMessage event of a SybaseConnection object. It is defined as follows: [Serializable] public delegate void SybaseInfoMessageEventHandler( object sender, SybaseInfoMessageEventArgs e ); where: sender is the object that generated the event. e is a SybaseInfoMessageEventArgs object that describes the warning. To retrieve warning information from the Sybase server, the application should add an instance of the delegate to the event (InfoMessage property of the SybaseConnection object). The event handler is called every time the event happens until the delegate is removed. For more information on Events and Delegates, refer to the Microsoft .NET Framework SDK documentation.