AllocateIP() приватный Метод

private AllocateIP ( string name ) : IPAddress
name string
Результат System.Net.IPAddress
Пример #1
0
        private IPAddress CatchAllProcessQuery(DnsQuestion question)
        {
            // If there is an interception configured, take it
            Interception interception = state_.Config.GetInterception(question.Name);

            if (interception != null)
            {
                return(GetIp(interception));
            }

            return(state_.AllocateIP(question.Name));
        }