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; }
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; }
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; }
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] !; }
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."); } }
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; }
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; }
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; }
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); }
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; }
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; }
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; }
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; }
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] !; }
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; }
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; }
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); }
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; }