Example #1
0
        protected object PerformCall(SuperPoolCall call, object target, out Exception exception)
        {
            object obj = call.Call(target, this.AutoControlInvoke, out exception);

            if (exception == null)
            {
                ;
            }
            return(obj);
        }
Example #2
0
        protected object PerformCall(SuperPoolCall call, object target, out Exception exception)
        {
            object result = call.Call(target, AutoControlInvoke, out exception);

            if (exception != null)
            {
#if Matrix_Diagnostics
                SystemMonitor.OperationError(string.Format("Client [{0}] call [{1}] has caused an exception", this.Name, call.ToString()), exception);
#endif
            }

            return(result);
        }