Class FtpMissingObjectException
- Namespace
- FluentFTP.Exceptions
- Assembly
- FluentFTP.dll
Exception is thrown by FtpClient/AsyncFtpClient when the primary file or folder to be downloaded is missing.
public class FtpMissingObjectException : FtpException, ISerializable
- Inheritance
-
FtpMissingObjectException
- Implements
- Inherited Members
- Extension Methods
Constructors
FtpMissingObjectException(string, Exception, string, FtpObjectType)
Creates a new FtpMissingObjectException.
public FtpMissingObjectException(string message, Exception innerException, string fullPath, FtpObjectType type)
Parameters
message
stringinnerException
ExceptionThe original exception.
fullPath
stringtype
FtpObjectType
Properties
FullPath
Gets the full path name to the file or folder.
public string FullPath { get; set; }
Property Value
Name
Gets the name of the file or folder. Does not include the full path.
public string Name { get; }
Property Value
Type
Gets the type of file system object.
public FtpObjectType Type { get; set; }