0 out of 1 rated this helpful - Rate this topic

FtpWebResponse Class

Encapsulates a File Transfer Protocol (FTP) server's response to a request.

System.Object
  System.MarshalByRefObject
    System.Net.WebResponse
      System.Net.FtpWebResponse

Namespace:  System.Net
Assembly:  System (in System.dll)
public class FtpWebResponse : WebResponse, 
	IDisposable

The FtpWebResponse type exposes the following members.

  Name Description
Public property BannerMessage Gets the message sent by the FTP server when a connection is established prior to logon.
Public property ContentLength Gets the length of the data received from the FTP server. (Overrides WebResponse.ContentLength.)
Public property ContentType When overridden in a derived class, gets or sets the content type of the data being received. (Inherited from WebResponse.)
Public property ExitMessage Gets the message sent by the server when the FTP session is ending.
Public property Headers Infrastructure. Gets an empty WebHeaderCollection object. (Overrides WebResponse.Headers.)
Public property IsFromCache Gets a Boolean value that indicates whether this response was obtained from the cache. (Inherited from WebResponse.)
Public property IsMutuallyAuthenticated Gets a Boolean value that indicates whether mutual authentication occurred. (Inherited from WebResponse.)
Public property LastModified Gets the date and time that a file on an FTP server was last modified.
Public property ResponseUri Gets the URI that sent the response to the request. (Overrides WebResponse.ResponseUri.)
Public property StatusCode Gets the most recent status code sent from the FTP server.
Public property StatusDescription Gets text that describes a status code sent from the FTP server.
Public property WelcomeMessage Gets the message sent by the FTP server when authentication is complete.
Top
  Name Description
Public method Close Frees the resources held by the response. (Overrides WebResponse.Close().)
Public method CreateObjRef Creates an object that contains all the relevant information required to generate a proxy used to communicate with a remote object. (Inherited from MarshalByRefObject.)
Public method Equals(Object) Determines whether the specified Object is equal to the current Object. (Inherited from Object.)
Protected method Finalize Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.)
Public method GetHashCode Serves as a hash function for a particular type. (Inherited from Object.)
Public method GetLifetimeService Retrieves the current lifetime service object that controls the lifetime policy for this instance. (Inherited from MarshalByRefObject.)
Protected method GetObjectData Infrastructure. Populates a SerializationInfo with the data that is needed to serialize the target object. (Inherited from WebResponse.)
Public method GetResponseStream Retrieves the stream that contains response data sent from an FTP server. (Overrides WebResponse.GetResponseStream().)
Public method GetType Gets the Type of the current instance. (Inherited from Object.)
Public method InitializeLifetimeService Obtains a lifetime service object to control the lifetime policy for this instance. (Inherited from MarshalByRefObject.)
Protected method MemberwiseClone() Creates a shallow copy of the current Object. (Inherited from Object.)
Protected method MemberwiseClone(Boolean) Creates a shallow copy of the current MarshalByRefObject object. (Inherited from MarshalByRefObject.)
Public method ToString Returns a string that represents the current object. (Inherited from Object.)
Top
  Name Description
Explicit interface implemetation Private method IDisposable.Dispose Infrastructure. When overridden in a derived class, releases all resources used by the WebResponse. (Inherited from WebResponse.)
Explicit interface implemetation Private method ISerializable.GetObjectData Infrastructure. Populates a SerializationInfo instance with the data that is needed to serialize WebResponse. (Inherited from WebResponse.)
Top

Instances of FtpWebResponse are obtained by calling the GetResponse method. The returned object must be cast to an FtpWebResponse. When your application no longer needs the FtpWebResponse object, call the Close method to free the resources held by the FtpWebResponse.

The StatusCode property contains the status code returned by the server, and the StatusDescription property returns the status code and a message that describes the status. The values returned by these properties change as the messages are returned by the server.

Any data returned by the request, such as the list of file names returned for a ListDirectory request, is available in the stream returned by the GetResponseStream method. The length of the stream data can be obtained from the ContentLength property.

The following code example sends a request to delete a file on an FTP server and displays the status message from the server's response to the request. For additional examples, see the members of the WebRequestMethods.Ftp and FtpWebRequest classes.


public static bool DeleteFileOnServer(Uri serverUri)
{
    // The serverUri parameter should use the ftp:// scheme.
    // It contains the name of the server file that is to be deleted.
    // Example: ftp://contoso.com/someFile.txt.
    // 

    if (serverUri.Scheme != Uri.UriSchemeFtp)
    {
        return false;
    }
    // Get the object used to communicate with the server.
    FtpWebRequest request = (FtpWebRequest)WebRequest.Create(serverUri);
    request.Method = WebRequestMethods.Ftp.DeleteFile;

    FtpWebResponse response = (FtpWebResponse) request.GetResponse();
    Console.WriteLine("Delete status: {0}",response.StatusDescription);  
    response.Close();
    return true;
}


.NET Framework

Supported in: 4, 3.5, 3.0, 2.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ