Exemplo n.º 1
0
 internal ARecord(IPv4 value, DnsRecordId id, DomainName name, DomainId sourceId, TimeToLive ttl, bool monitor, bool failover, bool failed, bool dynamicDns, RecordSource source, string?password, GlobalTrafficDirectorLocation?gtdLocation) : base(id, name, source, sourceId, ttl, gtdLocation)
 {
     Target = value;
     IsDynamicDnsEnabled       = dynamicDns;
     DynamicDnsPassword        = password;
     IsSystemMonitoringEnabled = monitor;
     IsFailoverEnabled         = failover;
     IsInFailedState           = failed;
 }
Exemplo n.º 2
0
 private protected DnsRecord(DnsRecordId id, DomainName name, RecordSource source, DomainId sourceId, TimeToLive ttl, GlobalTrafficDirectorLocation?gtdLocation)
 {
     Id             = id;
     Name           = name;
     Source         = source;
     ParentDomainId = sourceId;
     TimeToLive     = ttl;
     GlobalTrafficDirectorLocation = gtdLocation;
 }
Exemplo n.º 3
0
 private protected DnsRecord(DnsRecordId id, DomainName name, DomainId parentDomainId, TimeToLive timeToLive, RecordSource recordSource = default, GlobalTrafficDirectorLocation?globalTrafficDirectorLocation = null)
 {
     Id             = id;
     Name           = name;
     Source         = recordSource;
     ParentDomainId = parentDomainId;
     TimeToLive     = timeToLive;
     GlobalTrafficDirectorLocation = globalTrafficDirectorLocation;
 }
Exemplo n.º 4
0
 public ARecord(IPv4 target, DnsRecordId id, DomainName name, DomainId parentDomainId, TimeToLive timeToLive, RecordSource recordSource = default, bool isDynamicDnsEnabled = false, string?dynamicDnsPassword = null, GlobalTrafficDirectorLocation?globalTrafficDirectorLocation = null, bool isSystemMonitoringEnabled = false, bool isFailoverEnabled = false, bool isInFailedState = false) : base(id, name, parentDomainId, timeToLive, recordSource, globalTrafficDirectorLocation)
 {
     Target = target;
     IsDynamicDnsEnabled       = isDynamicDnsEnabled;
     DynamicDnsPassword        = dynamicDnsPassword;
     IsSystemMonitoringEnabled = isSystemMonitoringEnabled;
     IsFailoverEnabled         = isFailoverEnabled;
     IsInFailedState           = isInFailedState;
 }
Exemplo n.º 5
0
 internal HttpRedirectionRecord(DnsRecordId id, DomainName name, RecordSource source, DomainId sourceId, TimeToLive ttl, GlobalTrafficDirectorLocation?gtdLocation, Uri value, string description, string keywords, string title, RedirectType redirectType, bool hardLink) : base(id, name, source, sourceId, ttl, gtdLocation)
 {
     Url          = value;
     Description  = description;
     Keywords     = keywords;
     Title        = title;
     RedirectType = redirectType;
     IsHardLink   = hardLink;
 }
Exemplo n.º 6
0
 internal SRVRecord(DnsRecordId id, DomainName name, RecordSource source, DomainId sourceId, TimeToLive ttl, GlobalTrafficDirectorLocation?gtdLocation, Priority priority, Weight weight, Port port, string value) : base(id, name, source, sourceId, ttl, gtdLocation)
 {
     Priority        = priority;
     Weight          = weight;
     Port            = port;
     Target          = DomainName.Parse(value);
     TargetWasRooted = value.EndsWith(".", StringComparison.OrdinalIgnoreCase);
     Service         = name.Labels[0] !;
     Protocol        = name.Labels[1] !;
 }
Exemplo n.º 7
0
 internal ANameRecord(string value, DnsRecordId id, DomainName name, RecordSource source, DomainId sourceId, TimeToLive ttl, GlobalTrafficDirectorLocation?gtdLocation) : base(id, name, source, sourceId, ttl, gtdLocation)
 {
     if (DomainName.TryParse(value, out var domainName))
     {
         TargetDomain          = domainName;
         TargetDomainWasRooted = value.EndsWith(".", StringComparison.OrdinalIgnoreCase);
     }
     else if (IPv4.TryParse(value, out var ipv4))
     {
         TargetIPv4 = ipv4;
     }
     else if (IPv6.TryParse(value, out var ipv6))
     {
         TargetIpv6 = ipv6;
     }
     else
     {
         throw new FormatException($"Unrecognised value for an ANAME record: `{value}`. Expecting a domain name, IPv4 or IPv6 address.");
     }
 }
Exemplo n.º 8
0
 public NSRecord(DomainName nameServer, DnsRecordId id, DomainName name, DomainId parentDomainId, TimeToLive timeToLive, RecordSource recordSource = default, GlobalTrafficDirectorLocation?globalTrafficDirectorLocation = null) : base(id, name, parentDomainId, timeToLive, recordSource, globalTrafficDirectorLocation)
 {
     NameServer = nameServer;
 }
Exemplo n.º 9
0
 internal NSRecord(DnsRecordId id, DomainName name, RecordSource source, DomainId sourceId, TimeToLive ttl, GlobalTrafficDirectorLocation?gtdLocation, string value) : base(id, name, source, sourceId, ttl, gtdLocation)
 {
     NameServer          = DomainName.Parse(value);
     NameServerWasRooted = value.EndsWith(".", StringComparison.OrdinalIgnoreCase);
 }
Exemplo n.º 10
0
 public ANameRecord(IPv6 targetIpv6, DnsRecordId id, DomainName name, DomainId parentDomainId, TimeToLive timeToLive, RecordSource recordSource = default, GlobalTrafficDirectorLocation?globalTrafficDirectorLocation = null) : base(id, name, parentDomainId, timeToLive, recordSource, globalTrafficDirectorLocation)
 {
     TargetIpv6 = targetIpv6;
 }
Exemplo n.º 11
0
 public HttpRedirectionRecord(Uri url, string description, string keywords, string title, RedirectType redirectType, bool isHardLink, DnsRecordId id, DomainName name, DomainId parentDomainId, TimeToLive timeToLive, RecordSource recordSource = default, GlobalTrafficDirectorLocation?globalTrafficDirectorLocation = null) : base(id, name, parentDomainId, timeToLive, recordSource, globalTrafficDirectorLocation)
 {
     Url          = url;
     Description  = description;
     Keywords     = keywords;
     Title        = title;
     RedirectType = redirectType;
     IsHardLink   = isHardLink;
 }
Exemplo n.º 12
0
 internal AAAARecord(DnsRecordId id, DomainName name, DomainId sourceId, TimeToLive ttl, RecordSource source, GlobalTrafficDirectorLocation?gtdLocation, IPv6 value) : base(id, name, source, sourceId, ttl, gtdLocation)
 {
     Target = value;
 }
Exemplo n.º 13
0
 public SRVRecord(Priority priority, Weight weight, Port port, DomainName target, DnsRecordId id, DomainName name, DomainId parentDomainId, TimeToLive timeToLive, RecordSource recordSource = default, GlobalTrafficDirectorLocation?globalTrafficDirectorLocation = null) : base(id, name, parentDomainId, timeToLive, recordSource, globalTrafficDirectorLocation)
 {
     Priority = priority;
     Weight   = weight;
     Port     = port;
     Target   = target;
     Service  = name.Labels[0] !;
     Protocol = name.Labels[1] !;
 }
Exemplo n.º 14
0
 public MXRecord(MxLevel mxLevel, DomainName target, DnsRecordId id, DomainName name, DomainId parentDomainId, TimeToLive timeToLive, RecordSource recordSource = default, GlobalTrafficDirectorLocation?globalTrafficDirectorLocation = null) : base(id, name, parentDomainId, timeToLive, recordSource, globalTrafficDirectorLocation)
 {
     MxLevel = mxLevel;
     Target  = target;
 }
Exemplo n.º 15
0
 internal MXRecord(DnsRecordId id, DomainName name, RecordSource source, DomainId sourceId, TimeToLive ttl, GlobalTrafficDirectorLocation?gtdLocation, MxLevel mxLevel, string value) : base(id, name, source, sourceId, ttl, gtdLocation)
 {
     MxLevel         = mxLevel;
     Target          = DomainName.Parse(value);
     TargetWasRooted = value.EndsWith(".", StringComparison.OrdinalIgnoreCase);
 }
Exemplo n.º 16
0
 public SPFRecord(string value, DnsRecordId id, DomainName name, DomainId parentDomainId, TimeToLive timeToLive, RecordSource recordSource = default, GlobalTrafficDirectorLocation?globalTrafficDirectorLocation = null) : base(id, name, parentDomainId, timeToLive, recordSource, globalTrafficDirectorLocation)
 {
     Value = value;
 }
Exemplo n.º 17
0
 internal SPFRecord(DnsRecordId id, DomainName name, RecordSource source, DomainId sourceId, TimeToLive ttl, GlobalTrafficDirectorLocation?gtdLocation, string value) : base(id, name, source, sourceId, ttl, gtdLocation)
 {
     Value = value;
 }
Exemplo n.º 18
0
 internal TXTRecord(DnsRecordId id, DomainName name, RecordSource source, DomainId sourceId, TimeToLive ttl, GlobalTrafficDirectorLocation?gtdLocation, string value) : base(id, name, source, sourceId, ttl, gtdLocation)
 {
     Value = value[0] == '"'
                         ? value.Substring(1, value.Length - 2)
                         : value;
 }