Free .net API - Windows DNS server - Simple DNS Plus

To download please agree to the Terms of Use below!
Right here you may download my Simple DNS Plus API written in Vb.Net. It's not opensource, so you can only download the DLL for use in your project.
The API consists of two classes "sdnsNetAPI" and "zone". The sdnsNetAPI class contains all needed properties and functions to interact with Simple DNS Plus. The zone class is just a description for a dns zone.
To illustrate the ease of use, check out this piece of code:

Dim sdpApi As New sdnsNetAPI("ns.yournameserver.com", "yourPassword")
Dim myZone As New zone

myZone.PrimaryNS = "ns.yournameserver.com"
myZone.SecondaryNS = "ns2.yournameserver.com"
myZone.DomainName = "mynewdomain.com"
myZone.WebserverIP = "123.123.123.123"

sdpApi.updatePrimaryZone(myZone)


The example above is enough to create a new zone called "mynewdomain.com" on your primary and your secondary (if available) nameservers, pointing it to "123.123.123.123".
Ofcourse you can supply much more detailed information through the API, which can be read in the API description.
Before you may download please agree to the following:

Terms of use:

- You may NOT distribute this file anywhere else in whatever form.
- You may NOT remove any copyright notices.
- You will NOT hold the author reliable for any damages.
- You will use this script at your own risk.

  By downloading the API you agree to these conditions!

 
  Download .net API for Simple DNS Plus!