Home >
Development
>
Components & Libraries
Simple DNS Plus .NET API
| Our Rating: |
 |
| Popularity: |
 |

|
|
| Released Date: |
5-6-2005 |
| File Size: |
8 KB. |
| Version: |
1 |
| License: |
Freeware |
| Price: |
$0 |
| OS: |
Win98,WinME,WinNT 4.x,Windows2000,WinXP,Windows2003 |
| Developer: |
NeoKobe | more products from this developer |
| Last Update: |
19-07-2006 |
| Downloads: |
129 |
Simple DNS Plus .NET API Description
The API consists of two classes 'sdnsNetAPI' and 'zone'. The sdnsNetAPI class contains all needed functions to interact with Simple DNS Plus. The zone class is just a definition for a dns zone. To create a new zone called 'mynewdomain.com' on your primary and your secondary (if available) nameservers, just use the zone constructor and provide the zone information, i.e:
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) |
|
|
|
|