Files
netch/Netch/NativeMethods.cs
2021-04-30 15:24:37 +08:00

11 lines
233 B
C#

using System.Runtime.InteropServices;
namespace Netch
{
public static class NativeMethods
{
[DllImport("dnsapi", EntryPoint = "DnsFlushResolverCache")]
public static extern uint RefreshDNSCache();
}
}