mirror of
https://github.com/bolucat/Archive.git
synced 2025-09-26 20:21:35 +08:00
9 lines
210 B
C#
9 lines
210 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace Netch;
|
|
|
|
public static class NativeMethods
|
|
{
|
|
[DllImport("dnsapi", EntryPoint = "DnsFlushResolverCache")]
|
|
public static extern uint RefreshDNSCache();
|
|
} |