Data.SqlExpr.TSQLConnection.RemoveConnectNotification

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type:
procedure
function
Visibility: public
Source:
Data.SqlExpr.pas
Data.SqlExpr.hpp
Unit: Data.SqlExpr
Parent: TSQLConnection

Delphi

procedure RemoveConnectNotification(Listener: TObject);

C++

void __fastcall RemoveConnectNotification(System::TObject* Listener);

Description

Removes a registered client listener object so that it is no longer associated with the connection component.

RemoveConnectNotification is used to remove previously registered client listener objects from the internal list of objects that are informed when a connection is created or terminated.

Listener is the object that is to be removed from the list. It should be an object that was previously registered by a call to AddConnectNotification.

See Also