Exemple #1
0
        public bool Execute(IFreeformEntity_Msg request)
        {
            using (ILogMethod method = Log.LogMethod(this.DYN_MODULE_NAME, "Execute"))
            {
                bool   result = default(bool);
                string key    = string.Empty;

                try
                {
                    key          = request.IpAddress;
                    _isExecuting = true;
                    result       = _msgHandler.Execute(request);
                }
                catch (Exception ex)
                {
                    method.Exception(ex);
                }
                finally
                {
                    _isExecuting = false;
                }

                return(result);
            }
        }