gov.va.medora.mdws.MockServiceLogger.Invoke C# (CSharp) Méthode

Invoke() public méthode

public Invoke ( IMethodInvocation invocation ) : object
invocation IMethodInvocation
Résultat 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