What's equivalent of NetworkInterface
in Delphi, where i can build a program like
Network-Bandwidth-Meter
?
There some way to use this class on Delphi?
What's equivalent of NetworkInterface
in Delphi, where i can build a program like
Network-Bandwidth-Meter
?
There some way to use this class on Delphi?
If you look at the source code for the NetworkInterface
class, you will see that internally it gets its information from the GetAdaptersAddresses()
function, which you can call directly in Delphi code.