Indy 9
|
TIdFingerServer = class(TIdTCPServer)
property DefaultPort: integer;
constructor Create(AOwner: TComponent); override;
property OnCommandFinger: TIdFingerGetEvent;
OnCommandFinger is used during execution of the threaded client in AThread, and allows the server to implement resolution of the Finger query. Applications must assign a procedure to the event handler to allow responding to the event notification. The event handler should be used to locate user information for the Finger query, and write any reponse or error messages to the client connection in AThread.
Use OnCommandVerboseFinger to resolve Finger queries that require verbose output.
property OnCommandVerboseFinger: TIdFingerGetEvent;
OnCommandVerboseFinger is used during execution of the threaded client in AThread, and allows the server to implement resolution of the Finger query using verbose output. Applications must assign a procedure to the event handler to allow responding to the event notification. The event handler should be used to locate user information for the Finger query, and write any reponse or error messages to the client connection in AThread.
When OnCommandVerboseFinger is unassigned, OnCommandFinger will be used to resolve the Finger query.