Interface ISshReadWrite
Provides metadata for SFTP read and write events.
Namespace: ApacheMinaSSHD.NET.Wrapper.Abstractions.Models
Assembly: ApacheMinaSSHD.NET.Wrapper.dll
Syntax
public interface ISshReadWrite : ISshEvent
Properties
| Edit this page View SourceData
Gets the data buffer associated with the read or write operation.
Declaration
byte[] Data { get; }
Property Value
| Type | Description |
|---|---|
| byte[] |
Length
Gets the number of bytes requested or processed.
Declaration
int Length { get; }
Property Value
| Type | Description |
|---|---|
| int |
Offset
Gets the file offset for the read or write operation.
Declaration
long Offset { get; }
Property Value
| Type | Description |
|---|---|
| long |