You can look at the AdapterDetails object to get at the Description property. Judging by the samples I've seen, this property may only be available for hardware devices.
You can loop through the Manager.Adapters collection with something like:
C#:
foreach (AdapterInformation ai in Manager.Adapters)
{
System.Diagnostics.Debug.WriteLine(ai.Information.Description);
}
The Adapters collection of the Manager object is static so it doesn't need to be instantiated.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.