Description
-
Called when wodFTPD sends some response.
Return Type
-
None
Syntax
-
object.Response Owner, User,
RespLine
The Response Method syntax has these parts:
| object |
An expression
evaluating to an object of type wodFTPDNotify. |
| Owner |
A wodFTPDCom object. Reference
to wodFTPServer instance that called this notification
method. |
| User |
A FtpUser object. Reference
to user who will receive response. |
| RespLine |
A String
value. Full response that will be sent to the
user. |
Remarks
-
NOTE: This method is called only if you
implemented IwodFTPDNotify interface in your application, and
wodFTPD.Notification
property has received reference to instance of your implementation.
Response notification method is called when response is
to be sent to the client. At this point, you can change
response to something else you prefer. RespLine argument will always contain CRLF
(carriage return - line feed) characters at the end of
line.
|