SftpStatusCode class abstract

Constructors

SftpStatusCode()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

badMessage → const int
may be returned if a badly formatted packet or protocol incompatibility is detected.
connectionLost → const int
A pseudo-error which indicates that the connection to the server has been lost (it can only be generated locally by the client, and MUST NOT be returned by servers).
eof → const int
indicates end-of-file condition; for SftpReadPacket it means that no more data is available in the file, and for SftpReadDirPacket it indicates that no more files are contained in the directory.
failure → const int
A generic catch-all error message; it should be returned if an error occurs for which there is no more specific error code defined.
noConnection → const int
A pseudo-error which indicates that the client has no connection to the server (it can only be generated locally by the client, and MUST NOT be returned by servers).
noSuchFile → const int
Returned when a reference is made to a file which should exist but doesn't.
ok → const int
Indicates successful completion of the operation.
opUnsupported → const int
Indicates that an attempt was made to perform an operation which is not supported for the server (it may be generated locally by the client if e.g. the version number exchange indicates that a required feature is not supported by the server, or it may be returned by the server if the server does not implement an operation).
permissionDenied → const int
Returned when the authenticated user does not have sufficient permissions to perform the operation.