コード例 #1
0
ファイル: InterceptorProxy.cs プロジェクト: szp11/Castle.Aop
        private IInterceptor CreateInterceptor(InterceptorAttribute interceptorAttribute)
        {
            if (String.IsNullOrEmpty(interceptorAttribute.InterceptorName))
            {
                return Container.GetInstance(interceptorAttribute.InterceptorType) as IInterceptor;
            }

            return Container.GetInstance(interceptorAttribute.InterceptorType, interceptorAttribute.InterceptorName) as IInterceptor;
        }
コード例 #2
0
ファイル: InterceptorProxy.cs プロジェクト: szp11/Castle.Aop
 private static int SortOrder(InterceptorAttribute a)
 {
     return a.Order;
 }