A
anonymono
Can I control the maximum speed that a connection (remoting or sockets)
can reach with C#?
Thanks in advance.
--
can reach with C#?
Thanks in advance.
--
Not really. There is no built in throttling mechanism for sockets at
the socket layer. You can control the bandwidth of the sockets you open,
using a throttling mechanism (you would actually wait between reads). You
should be able to find an algorithm on the web.
anonymono said:Nicholas Paldino [.NET/C# MVP] escribió:Not really. There is no built in throttling mechanism for sockets at
the socket layer. You can control the bandwidth of the sockets you open,
using a throttling mechanism (you would actually wait between reads).
You should be able to find an algorithm on the web.
Thanks for the info, it clarifies things a lot. But how can this
"workaround" be done for Remoting?
Regards.
--