EldoS
Navigation
Web site
Support
Table Of Contents

Filter: C#  VB.NET  Pascal  ActiveX  DLL 


TElFTPSServer.OnCommandReceived

TElFTPSServer     See also    


 

This event is fired when a command is received from client.

 
 

Declaration

[C#]
    event TSBFTPSServerCommandReceivedEvent OnCommandReceived;
    delegate void TSBFTPSServerCommandReceivedEvent(object Sender, string Command, string Parameters, ref bool Ignore);

[VB.NET]
    Event OnCommandReceived As TSBFTPSServerCommandReceivedEvent
    Delegate Sub TSBFTPSServerCommandReceivedEvent(ByVal Sender As Object, ByVal Command As String, ByVal Parameters As String, ByRef Ignore As Boolean)

[Pascal]
    property OnCommandReceived : TSBFTPSServerCommandReceivedEvent;
    TSBFTPSServerCommandReceivedEvent = procedure (Sender: TObject; const Command, Parameters : string; var Ignore : boolean) of object;

[VB6]
    not implemented;

[ActiveX]
    not implemented;

[DLL]
    not implemented;
 
 

Parameters

  • Command - contains the command.
  • Parameters - contains command parameters like flags, file names, etc.
  • Ignore - set this parameter to True if the server should ignore the command.
 
 

Description

    This event is fired by TElFTPSServer when it has received a command from client. Set Ignore to True if the server should not execute the command. The server will report on command handling via one of OnCommandProcessed or OnCommandUnhandled events.

 
 

See also:     OnCommandProcessed     OnCommandUnhandled    

 
Contact Us | Terms of Use | Trademarks | Privacy Statement
Copyright (c) 1998-2012, EldoS Corporation