Interface IFtpConnectionKeepAlive
Interface to ensure that a connection keeps alive.
Namespace: FubarDev.FtpServer
Assembly: FubarDev.FtpServer.Abstractions.dll
Syntax
[Obsolete("Use the IFtpConnectionStatusCheck feature instead.")]
public interface IFtpConnectionKeepAlive
Properties
| Improve this Doc View SourceIsAlive
Gets a value indicating whether the connection is still alive.
Declaration
[Obsolete("Use the IFtpConnectionStatusCheck feature instead.")]
bool IsAlive { get; }
Property Value
Type | Description |
---|---|
Boolean |
IsInDataTransfer
Gets or sets a value indicating whether a data transfer is active.
Declaration
[Obsolete("Use the IFtpConnectionEventHost feature to publish events.")]
bool IsInDataTransfer { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
LastActivityUtc
Gets the time of last activity (UTC).
Declaration
[Obsolete("This has never been useful.")]
DateTime LastActivityUtc { get; }
Property Value
Type | Description |
---|---|
DateTime |
Methods
| Improve this Doc View SourceKeepAlive()
Ensure that the connection keeps alive.
Declaration
[Obsolete("Use the IFtpConnectionEventHost feature to publish events.")]
void KeepAlive()