BusinessLogic.Events.HandlerFactory.HandlerInstance.HandleWithParameters C# (CSharp) Метод

HandleWithParameters() приватный Метод

private HandleWithParameters ( object parameters ) : object
parameters object
Результат object
        public object HandleWithParameters(object[] parameters)
        {
            try
            {

                var result = HandlerMetaInfo.HandleMethod.Invoke(_instance, parameters);
                return result;
            }
            catch (TargetInvocationException ex)
            {
                if (ex.InnerException != null)
                {
                    throw ex.InnerException;
                }

                throw;
            }

        }
    }