@@ -167,7 +167,7 @@ public TimeSpan Timeout
167167 }
168168
169169 /// <summary>
170- /// Gets or sets a flag indicating whether Tcp should be used in case a Udp response is truncated.
170+ /// Gets or sets a flag indicating whether TCP should be used in case a UDP response is truncated.
171171 /// Default is <c>True</c>.
172172 /// <para>
173173 /// If <c>False</c>, truncated results will potentially yield no or incomplete answers.
@@ -176,10 +176,10 @@ public TimeSpan Timeout
176176 public bool UseTcpFallback { get ; set ; } = true ;
177177
178178 /// <summary>
179- /// Gets or sets a flag indicating whether Udp should not be used at all.
179+ /// Gets or sets a flag indicating whether UDP should not be used at all.
180180 /// Default is <c>False</c>.
181181 /// <para>
182- /// Enable this only if Udp cannot be used because of your firewall rules for example.
182+ /// Enable this only if UDP cannot be used because of your firewall rules for example.
183183 /// Also, zone transfers (see <see cref="QueryType.AXFR"/>) must use TCP only.
184184 /// </para>
185185 /// </summary>
@@ -378,11 +378,11 @@ public LookupClientOptions(params IPAddress[] nameServers)
378378 /// TTL of the record is lower than this minimum value.
379379 /// Default is <c>Null</c>.
380380 /// <para>
381- /// This is useful in case the server retruns records with zero TTL.
381+ /// This is useful in case the server returns records with zero TTL.
382382 /// </para>
383383 /// </summary>
384384 /// <remarks>
385- /// This setting gets igonred in case <see cref="DnsQueryOptions.UseCache"/> is set to <c>False</c>,
385+ /// This setting gets ignored in case <see cref="DnsQueryOptions.UseCache"/> is set to <c>False</c>,
386386 /// or the value is set to <c>Null</c> or <see cref="TimeSpan.Zero"/>.
387387 /// The maximum value is 24 days or <see cref="Timeout.Infinite"/> (choose a wise setting).
388388 /// </remarks>
@@ -414,7 +414,7 @@ public TimeSpan? MinimumCacheTimeout
414414 /// Default is <c>Null</c>.
415415 /// </summary>
416416 /// <remarks>
417- /// This setting gets igonred in case <see cref="DnsQueryOptions.UseCache"/> is set to <c>False</c>,
417+ /// This setting gets ignored in case <see cref="DnsQueryOptions.UseCache"/> is set to <c>False</c>,
418418 /// or the value is set to <c>Null</c>, <see cref="Timeout.Infinite"/> or <see cref="TimeSpan.Zero"/>.
419419 /// The maximum value is 24 days (which shouldn't be used).
420420 /// </remarks>
@@ -575,7 +575,7 @@ public class DnsQuerySettings : IEquatable<DnsQuerySettings>
575575 public TimeSpan Timeout { get ; }
576576
577577 /// <summary>
578- /// Gets a flag indicating whether Tcp should be used in case a Udp response is truncated.
578+ /// Gets a flag indicating whether TCP should be used in case a UDP response is truncated.
579579 /// Default is <c>True</c>.
580580 /// <para>
581581 /// If <c>False</c>, truncated results will potentially yield no or incomplete answers.
@@ -584,10 +584,10 @@ public class DnsQuerySettings : IEquatable<DnsQuerySettings>
584584 public bool UseTcpFallback { get ; }
585585
586586 /// <summary>
587- /// Gets a flag indicating whether Udp should not be used at all.
587+ /// Gets a flag indicating whether UDP should not be used at all.
588588 /// Default is <c>False</c>.
589589 /// <para>
590- /// Enable this only if Udp cannot be used because of your firewall rules for example.
590+ /// Enable this only if UDP cannot be used because of your firewall rules for example.
591591 /// Also, zone transfers (see <see cref="QueryType.AXFR"/>) must use TCP only.
592592 /// </para>
593593 /// </summary>
@@ -797,11 +797,11 @@ internal LookupClientSettings(LookupClientOptions options, IReadOnlyCollection<N
797797 /// TTL of the record is lower than this minimum value.
798798 /// Default is <c>Null</c>.
799799 /// <para>
800- /// This is useful in cases where the server retruns records with zero TTL.
800+ /// This is useful in cases where the server returns records with zero TTL.
801801 /// </para>
802802 /// </summary>
803803 /// <remarks>
804- /// This setting gets igonred in case <see cref="DnsQueryOptions.UseCache"/> is set to <c>False</c>.
804+ /// This setting gets ignored in case <see cref="DnsQueryOptions.UseCache"/> is set to <c>False</c>.
805805 /// The maximum value is 24 days or <see cref="Timeout.Infinite"/>.
806806 /// </remarks>
807807 public TimeSpan ? MinimumCacheTimeout { get ; }
@@ -812,7 +812,7 @@ internal LookupClientSettings(LookupClientOptions options, IReadOnlyCollection<N
812812 /// Default is <c>Null</c>.
813813 /// </summary>
814814 /// <remarks>
815- /// This setting gets igonred in case <see cref="DnsQueryOptions.UseCache"/> is set to <c>False</c>.
815+ /// This setting gets ignored in case <see cref="DnsQueryOptions.UseCache"/> is set to <c>False</c>.
816816 /// The maximum value is 24 days.
817817 /// Setting it to <see cref="Timeout.Infinite"/> would be equal to not providing a value.
818818 /// </remarks>
0 commit comments