Пример #1
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;
 }
Пример #2
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;
 }