コード例 #1
0
ファイル: MaxMind.cs プロジェクト: IMULMUL/DnsServer
        public static MaxMind Create(IDnsServer dnsServer)
        {
            if (_maxMind is null)
            {
                _maxMind = new MaxMind(dnsServer);
            }

            return(_maxMind);
        }
コード例 #2
0
ファイル: CNAME.cs プロジェクト: IMULMUL/DnsServer
        public Task InitializeAsync(IDnsServer dnsServer, string config)
        {
            _maxMind = MaxMind.Create(dnsServer);

            return(Task.CompletedTask);
        }