gov.va.medora.mdws.MockServiceLogger.Invoke C# (CSharp) Method

Invoke() public method

public Invoke ( IMethodInvocation invocation ) : object
invocation IMethodInvocation
return object
        public object Invoke(IMethodInvocation invocation)
        {
            LOG.Debug(String.Format("Intercepted call : about to invoke method '{0}'", invocation.Method.Name));
            object retVal = invocation.Proceed();
            LOG.Debug(String.Format("Intercepted call : returned '{0}'", retVal));
            return retVal;
        }
MockServiceLogger