Struct SftpProgressHandler.Entry
Describes an entry being handled.
public readonly ref struct SftpProgressHandler.Entry
- Inherited Members
Constructors
Entry(string, long?)
Initializes a new SftpProgressHandler.Entry.
public Entry(string sourcePath, long? sourceLength)
Parameters
sourcePathstringThe source path of the entry.
sourceLengthlong?The expected length of the source data, or null if unknown.
Properties
SourceLength
The expected length of the source data, or null if unknown.
public long? SourceLength { get; }
Property Value
- long?
SourcePath
The source path of the entry.
public string SourcePath { get; }