Interface ISshReadEntries
Provides metadata for completed SFTP directory read operations.
Namespace: ApacheMinaSSHD.NET.Wrapper.Abstractions.Models
Assembly: ApacheMinaSSHD.NET.Wrapper.dll
Syntax
public interface ISshReadEntries
Properties
| Edit this page View SourceDirectoryHandle
Gets the local directory handle wrapper.
Declaration
ISshDirectoryHandle DirectoryHandle { get; }
Property Value
| Type | Description |
|---|---|
| ISshDirectoryHandle |
Entries
Gets the directory entries returned to the client.
Declaration
IReadOnlyDictionary<string, object> Entries { get; }
Property Value
| Type | Description |
|---|---|
| IReadOnlyDictionary<string, object> |
Exception
Gets the exception associated with the read when available.
Declaration
Exception Exception { get; }
Property Value
| Type | Description |
|---|---|
| Exception |
RemoteHandle
Gets the remote directory handle identifier.
Declaration
string RemoteHandle { get; }
Property Value
| Type | Description |
|---|---|
| string |
Session
Gets the session associated with the directory read.
Declaration
ISshSession Session { get; }
Property Value
| Type | Description |
|---|---|
| ISshSession |