| 12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Azylee.Core.NetUtils.NetAddressUtils
- {
- /// <summary>
- /// DNS 工具类
- /// </summary>
- public static class DNSTool
- {
- /// <summary>
- /// 阿里DNS
- /// </summary>
- public const string AliDNS = "223.5.5.115";
- /// <summary>
- /// 百度DNS
- /// </summary>
- public const string BaiduDNS = "180.76.76.76";
- }
- }
|