Click here to Skip to main content
15,909,822 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi Guys,

I need to create a window application exe, that would flush DNS Cache.

I want to use Inbuild Componets of .Net Framework and not using command object.

Please Guide on This.

Thanks and Regards

Harsha :) :)
Posted
Updated 20-Apr-13 20:53pm
v2

1 solution

Hi,

You can use a function from Microsoft's "dnsapi.dll". This will allow you to do this completely programmatically:

C#
using System.Runtime.InteropServices;

[DllImport("dnsapi.dll",EntryPoint="DnsFlushResolverCache")]
private static extern UInt32 DnsFlushResolverCache ();

public static void FlushMyCache()
{
    UInt32 result = DnsFlushResolverCache();
}


Good luck,
JAFC
 
Share this answer
 
Comments
Harsha Dev 19-Apr-13 7:25am    
Thank you Jose Amilcar !!! :) Is there any other method to flush DNS... Can we Flush DNS using any other InBuild Component or DLL or Library of .NET Framework :)

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900