Advtools.AdvInterceptor.Configuration.GetInterception C# (CSharp) Method

GetInterception() private method

private GetInterception ( string name ) : Interception
name string
return 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());
        }