Delegate CreateEncryptedStreamDelegate
A delegate that's used to create an encrypted stream (CreateEncryptedStream).
Namespace: FubarDev.FtpServer
Assembly: FubarDev.FtpServer.Abstractions.dll
Syntax
public delegate Task<Stream> CreateEncryptedStreamDelegate(Stream unencryptedStream);
Parameters
| Type | Name | Description |
|---|---|---|
| Stream | unencryptedStream | The unencrypted stream. |
Returns
| Type | Description |
|---|---|
| Task<Stream> | The encrypted stream. |