C# Class LumiSoft.Net.Dns.Client.SOA_Record

Inheritance: DnsRecordBase
Show file Open project: jeske/StepsDB-alpha

Public Methods

Method Description
SOA_Record ( string nameServer, string adminEmail, long serial, long refresh, long retry, long expire, long minimum, int ttl ) : System

Default constructor.

Method Details

SOA_Record() public method

Default constructor.
public SOA_Record ( string nameServer, string adminEmail, long serial, long refresh, long retry, long expire, long minimum, int ttl ) : System
nameServer string Name server.
adminEmail string Zone administrator email.
serial long Version number of the original copy of the zone.
refresh long Time interval(in seconds) before the zone should be refreshed.
retry long Time interval(in seconds) that should elapse before a failed refresh should be retried.
expire long Time value(in seconds) that specifies the upper limit on the time interval that can elapse before the zone is no longer authoritative.
minimum long Minimum TTL(in seconds) field that should be exported with any RR from this zone.
ttl int TTL value.
return System