Advtools.AdvInterceptor.Configuration.GetInterception C# (CSharp) Метод

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

private GetInterception ( string name ) : Interception
name string
Результат Interception
        internal Interception GetInterception(string name)
        {
            var result = from i in interceptions_ where string.Compare(i.Name, name, true) == 0 select i;
            return (result.FirstOrDefault());
        }