FtpWebResponse.StatusDescription Propiedad

Definición

Obtiene texto que describe un código de estado enviado desde el servidor FTP.

public:
 property System::String ^ StatusDescription { System::String ^ get(); };
public string? StatusDescription { get; }
public string StatusDescription { get; }
member this.StatusDescription : string
Public ReadOnly Property StatusDescription As String

Valor de propiedad

Instancia de String que contiene el código de estado y el mensaje devuelto con esta respuesta.

Ejemplos

En el ejemplo de código siguiente se envía una solicitud para eliminar un archivo en un servidor FTP y se muestra el mensaje de estado de la respuesta del servidor a la solicitud.

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 = dynamic_cast<FtpWebRequest^>(WebRequest::Create( serverUri ));
   request->Method = WebRequestMethods::Ftp::DeleteFile;
   FtpWebResponse^ response = dynamic_cast<FtpWebResponse^>(request->GetResponse());
   Console::WriteLine( "Delete status: {0}", response->StatusDescription );
   response->Close();
   return true;
}
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;
}

Comentarios

El texto devuelto por la StatusDescription propiedad incluye el valor de la propiedad de 3 dígitos StatusCode . Al descargar datos, el servidor FTP devuelve el valor de los cambios como códigos de StatusDescription estado. Después de llamar al GetResponse método , StatusDescription contiene un código de estado intermedio. Cuando se llama al Close método , StatusDescription contiene el estado final.

Se aplica a

Consulte también