Interface ITemporaryData
Temporary data holder.
Inherited Members
Namespace: FubarDev.FtpServer.BackgroundTransfer
Assembly: FubarDev.FtpServer.Abstractions.dll
Syntax
public interface ITemporaryData : IDisposable
Remarks
Temporary data gets removed from the system when it's disposed.
Properties
| Improve this Doc View SourceSize
Gets the size of the temporary data.
Declaration
long Size { get; }
Property Value
Type | Description |
---|---|
Int64 |
Methods
| Improve this Doc View SourceOpenAsync()
Opens the temporary data and returns a stream.
Declaration
Task<Stream> OpenAsync()
Returns
Type | Description |
---|---|
Task<Stream> | The stream containig the temporary data. |