Esempio n. 1
0
        public virtual void Intercept(IInvocation invocation)
        {
            Method method = new Method(invocation.Method);
            bool snapShotEnabled = method.HasAttribute(typeof (WorkSnapshotAttribute));

            LastServiceCallStatus lastServiceCallStatus = serviceExecution.Invoking(service, invocation.Method);
            if (lastServiceCallStatus.WasExecuted)
                invocation.ReturnValue = lastServiceCallStatus.ReturnValue;
            else
            {
                if (snapShotEnabled)
                    serviceExecution.TakeSnapshot();
                ReflectedObject reflectedServiceObject = new ReflectedObject(service);
                sessionReport.Begin(invocation.Method.Name);
                try
                {
                    invocation.ReturnValue = reflectedServiceObject.Invoke(invocation.Method, invocation.Arguments);
                    serviceExecution.Invoked(invocation.ReturnValue);
                }
                catch (Exception e)
                {
                    sessionReport.Act();
                    serviceExecution.Error();
                    throw new WhiteException(string.Format("Error Invoking {0}.{1}",reflectedServiceObject.Class.Name,invocation.Method.Name),e.InnerException);
                }
            }
        }
Esempio n. 2
0
 public MethodInvocation(MethodInfo methodInfo, object[] args)
 {
     method = new Method(methodInfo);
     this.args = args;
 }