Skip to content

Commit 3c37a2c

Browse files
committed
Readme update - url fix
1 parent de7fc4c commit 3c37a2c

33 files changed

+46
-80
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ DnsClient.NET is a simple yet very powerful and high performance open source lib
99

1010
## Usage
1111

12-
See http://dnsclient.michaco.net for more details and documentation.
12+
See [the DnsClient site][dnsclient] for more details and documentation.
1313

1414
The following example instantiates a new `LookupClient` to query some IP address.
1515

@@ -57,6 +57,7 @@ Just clone the repository and open the solution in Visual Studio 2019.
5757
## Examples
5858

5959
* See [MiniDig](https://github.com/MichaCo/DnsClient.NET/tree/dev/samples/MiniDig)'s readme for what this example command line tool can do.
60-
* More documentation and a simple query window on http://dnsclient.michaco.net
60+
* [More documentation and examples][dnsclient]
6161
* The [Samples](https://github.com/MichaCo/DnsClient.NET.Samples) repository (there might be more in the future).
6262

63+
[dnsclient]:https://dnsclient.michaco.net

samples/MiniDig/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ public class Program
99
{
1010
public static async Task<int> Main(string[] args)
1111
{
12-
DnsClient.Tracing.Source.Switch.Level = SourceLevels.Information;
12+
DnsClient.Tracing.Source.Switch.Level = SourceLevels.Warning;
1313
DnsClient.Tracing.Source.Listeners.Add(new ConsoleTraceListener());
1414

1515
var app = new CommandLineApplication(throwOnUnexpectedArg: true);

src/DnsClient/DnsQueryExtensions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -738,9 +738,9 @@ public static ServiceHostEntry[] ResolveServiceProcessResult(IDnsQueryResponse r
738738
}
739739

740740
/// <summary>
741-
/// Extends <see cref="IPHostEntry"/> by the <see cref="ServiceHostEntry.Port"/> property.
741+
/// Extends <see cref="IPHostEntry"/> by the <see cref="Port"/> property.
742742
/// </summary>
743-
/// <seealso cref="System.Net.IPHostEntry" />
743+
/// <seealso cref="IPHostEntry" />
744744
public class ServiceHostEntry : IPHostEntry
745745
{
746746
/// <summary>

src/DnsClient/DnsQueryOptions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ public class DnsQueryOptions
143143
/// <summary>
144144
/// Gets or sets the request timeout in milliseconds. <see cref="Timeout"/> is used for limiting the connection and request time for one operation.
145145
/// Timeout must be greater than zero and less than <see cref="int.MaxValue"/>.
146-
/// If <see cref="System.Threading.Timeout.InfiniteTimeSpan"/> (or -1) is used, no timeout will be applied.
146+
/// If <see cref="Timeout.InfiniteTimeSpan"/> (or -1) is used, no timeout will be applied.
147147
/// Default is 5 seconds.
148148
/// </summary>
149149
/// <remarks>
@@ -579,7 +579,7 @@ public class DnsQuerySettings : IEquatable<DnsQuerySettings>
579579
/// <summary>
580580
/// Gets the request timeout in milliseconds. <see cref="Timeout"/> is used for limiting the connection and request time for one operation.
581581
/// Timeout must be greater than zero and less than <see cref="int.MaxValue"/>.
582-
/// If <see cref="System.Threading.Timeout.InfiniteTimeSpan"/> (or -1) is used, no timeout will be applied.
582+
/// If <see cref="Timeout.InfiniteTimeSpan"/> (or -1) is used, no timeout will be applied.
583583
/// Default is 5 seconds.
584584
/// </summary>
585585
/// <remarks>

src/DnsClient/DnsResponseCode.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ public enum DnsResponseCode
273273
/// <summary>
274274
/// A DnsClient specific exception transporting additional information about the query causing this exception.
275275
/// </summary>
276-
/// <seealso cref="System.Exception" />
276+
/// <seealso cref="Exception" />
277277
#if !NETSTANDARD1_3
278278
[Serializable]
279279
#endif

src/DnsClient/Internal/ILogger.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ public interface ILogger
1212
}
1313
}
1414

15-
#pragma warning restore CS1591 // Missing XML comment for publicly visible type or member
15+
#pragma warning restore CS1591 // Missing XML comment for publicly visible type or member

src/DnsClient/Internal/ILoggerFactory.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ public interface ILoggerFactory
88
}
99
}
1010

11-
#pragma warning restore CS1591 // Missing XML comment for publicly visible type or member
11+
#pragma warning restore CS1591 // Missing XML comment for publicly visible type or member

src/DnsClient/Internal/LogLevel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ public enum LogLevel
1414
}
1515
}
1616

17-
#pragma warning restore CS1591 // Missing XML comment for publicly visible type or member
17+
#pragma warning restore CS1591 // Missing XML comment for publicly visible type or member

src/DnsClient/Internal/LoggerExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,4 +143,4 @@ public static void Log(this ILogger logger, LogLevel logLevel, Exception excepti
143143
}
144144
}
145145

146-
#pragma warning restore CS1591 // Missing XML comment for publicly visible type or member
146+
#pragma warning restore CS1591 // Missing XML comment for publicly visible type or member

src/DnsClient/Internal/NullLoggerFactory.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ public void Log(LogLevel logLevel, int eventId, Exception exception, string mess
2121
}
2222
}
2323
}
24-
}
24+
}

0 commit comments

Comments
 (0)