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; }
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