microsoft / WindowsDevicePortalWrapper

A client library that wraps the Windows Device Portal REST APIs.
MIT License
182 stars 87 forks source link

NetworkAdapterInfo - DDNSEnabled and DNSAddresses missing #292

Open SebZar opened 6 years ago

SebZar commented 6 years ago

Hi, to get the information if the ip adresses of the DNS serves are obtained automatically or set to static addresses, the properties "DDNSEnabled" and "DNSAddresses" are missing.

Can you please add this property to the class "NetworkAdapterInfo" (file: WindowsDevicePortalWrapper.Shared/Core/Networking.cs).

/// <summary> /// Gets the ddns enabled /// </summary> [DataMember(Name = "DDNSEnabled")] public bool DDNSEnabled { get; private set; }

/// <summary> /// Gets the list of DNS addresses /// </summary> [DataMember(Name = "DNSAddresses")] public List<string> DNSAddresses { get; private set; }

Thanks in advance

lg