Interface ISshPath
Provides metadata for SFTP path-based events.
Namespace: ApacheMinaSSHD.NET.Wrapper.Abstractions.Models
Assembly: ApacheMinaSSHD.NET.Wrapper.dll
Syntax
public interface ISshPath
Properties
| Edit this page View SourceAttributes
Gets file attributes associated with the path.
Declaration
IReadOnlyDictionary<string, object> Attributes { get; }
Property Value
| Type | Description |
|---|---|
| IReadOnlyDictionary<string, object> |
Exception
Gets the exception associated with the event when available.
Declaration
Exception Exception { get; }
Property Value
| Type | Description |
|---|---|
| Exception |
IsDirectory
Gets whether the path is a directory.
Declaration
bool IsDirectory { get; }
Property Value
| Type | Description |
|---|---|
| bool |
Path
Gets the local or reported path associated with the event.
Declaration
string Path { get; }
Property Value
| Type | Description |
|---|---|
| string |
Session
Gets the session associated with the path event.
Declaration
ISshSession Session { get; }
Property Value
| Type | Description |
|---|---|
| ISshSession |