Files
netch/Netch/3rd/DnsClient.NET/StaticLog.cs
Connection Refused b2ea730984 done
2019-12-02 19:51:12 +08:00

35 lines
1.0 KiB
C#

////using System;
////using System.Linq;
////namespace DnsClient
////{
//// /// <summary>
//// /// Used for debugging at the moment, might be removed in a future release.
//// /// </summary>
//// public static class StaticLog
//// {
//// /// <summary>
//// /// The number of byte array allocations.
//// /// </summary>
//// public static long ByteArrayAllocations;
//// /// <summary>
//// /// The number of byte arrays released.
//// /// </summary>
//// public static long ByteArrayReleases;
//// /// <summary>
//// /// The number of resolved queries.
//// /// </summary>
//// public static long ResolveQueryCount;
//// /// <summary>
//// /// The number of resolve query tries.
//// /// </summary>
//// public static long ResolveQueryTries;
//// /// <summary>
//// /// The number of created clients.
//// /// </summary>
//// public static long CreatedClients;
//// }
////}