Apache.Shiro.Authz.Aop.AuthorizingMethodInterceptorSupport.Invoke C# (CSharp) Method

Invoke() public method

public Invoke ( IMethodInvocation invocation ) : object
invocation IMethodInvocation
return object
        public override object Invoke(IMethodInvocation invocation)
        {
            AssertAuthorized(invocation);

            return invocation.Proceed();
        }
AuthorizingMethodInterceptorSupport