Dart.Ftp Namespace : Response Class |
Often, protocols define that commands be responded to with responses made up of a response code and response text. For example, the FTP protocol defines a "CWD" command, which is a request to change the working directory. If the command sent to the server is "CWD MYDIR" (a request to change to a directory called "MYDIR"), the response from the server may be something like "200 Working Directory Changed." In PowerTCP, this response is encapsulated by the Response object, allowing access to the code (through the Response.Code property), the text (through the Response.Text property), or the raw response (through the Response.ToString method).
System.Object
Dart.Ftp.Response