What's equivalent of C# NetworkInterface in Delphi?

99 views Asked by At

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?

1

There are 1 answers

0
Remy Lebeau On BEST ANSWER

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.