public enum ConnectionSpeed {
DailUp = 4096,
Broadband = 7168,
DSL = 28672,
T1 = 153600,
Unlimited = 1610612736
}Public Enum ConnectionSpeed DailUp = 4096, Broadband = 7168, DSL = 28672, T1 = 153600, Unlimited = 1610612736 End Enum
When File is Sent it uses the buffer size based on this enumerator , Slow Connections should use low Value for this enumerator
|
Member |
Description |
|
Broadband |
Buffer Size is 7186 (approx. 7 Kb /Sec ) |
|
DailUp |
Buffer Size is 4096 (approx. 4 Kb /Sec ) |
|
DSL |
Buffer Size is 28672 (approx. 28 Kb /Sec ) |
|
T1 |
Buffer Size is 153600 (approx. 150 Kb /Sec ) |
|
Unlimited |
Buffer Size is 1610612736 (Approx. 1.5 Gb /Sec) |
The File receive Buffer size will adjust accordingly.