api for hosts / lmhosts

  • Thread starter Thread starter John A Grandy
  • Start date Start date
J

John A Grandy

Does Windows API or .NET API offer any methods related to querying the
mappings present in HOSTS or LMHOSTS file ?
 
Does Windows API or .NET API offer any methods related to querying the
mappings present in HOSTS or LMHOSTS file ?

You shouldn't ever need to. Any time you do something that results in
a DNS name resolution (such as WebRequest.Create() with a domain
name), the OS itself will consult the hosts file, and similarly, every
time there is a NetBIOS name resolution (such as File.Open() with an
UNC path), the OS will consult lmhosts.
 
Back
Top