Class FtpServerOptions
The FTP server options.
Inherited Members
Namespace: FubarDev.FtpServer
Assembly: FubarDev.FtpServer.dll
Syntax
public class FtpServerOptions
Properties
| Improve this Doc View SourceConnectionInactivityCheckInterval
Gets or sets the interval between checks for inactive connections.
Declaration
public TimeSpan? ConnectionInactivityCheckInterval { get; set; }
Property Value
Type | Description |
---|---|
Nullable<TimeSpan> |
MaxActiveConnections
Gets or sets the max allows active connections.
Declaration
public int MaxActiveConnections { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
Remarks
This will cause connections to be refused if count is exceeded. 0 (default) means no control over connection count.
Port
Gets or sets the server port.
Declaration
public int Port { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
ServerAddress
Gets or sets the address the server listens on. Leave empty to listen on all interfaces.
Declaration
public string? ServerAddress { get; set; }
Property Value
Type | Description |
---|---|
Nullable<String> |