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());
        }