WindowsDevicePortalWrapper icon indicating copy to clipboard operation
WindowsDevicePortalWrapper copied to clipboard

NetworkAdapterInfo - DDNSEnabled and DNSAddresses missing

Open SebZar opened this issue 7 years ago • 0 comments

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

SebZar avatar Aug 13 '18 08:08 SebZar