Interface ISshMove
Provides metadata for SFTP move or rename events.
Namespace: ApacheMinaSSHD.NET.Wrapper.Abstractions.Models
Assembly: ApacheMinaSSHD.NET.Wrapper.dll
Syntax
public interface ISshMove
Properties
| Edit this page View SourceDestPath
Gets the destination path.
Declaration
string DestPath { get; }
Property Value
| Type | Description |
|---|---|
| string |
Exception
Gets the exception associated with the event when available.
Declaration
Exception Exception { get; }
Property Value
| Type | Description |
|---|---|
| Exception |
Options
Gets option names associated with the move operation.
Declaration
IEnumerable<string> Options { get; }
Property Value
| Type | Description |
|---|---|
| IEnumerable<string> |
Session
Gets the session associated with the move event.
Declaration
ISshSession Session { get; }
Property Value
| Type | Description |
|---|---|
| ISshSession |
SourcePath
Gets the source path.
Declaration
string SourcePath { get; }
Property Value
| Type | Description |
|---|---|
| string |