Exemplo n.º 1
0
        // Token: 0x0600083B RID: 2107 RVA: 0x000281C0 File Offset: 0x000263C0
        public bool IsReplayRunning(AmServerName serverName)
        {
            bool result = false;

            try
            {
                result = AmRpcClientHelper.IsRunning(serverName.Fqdn);
            }
            catch (AmServerException ex)
            {
                AmTrace.Error("IsReplayRunning() failed with {0}", new object[]
                {
                    ex
                });
            }
            catch (AmServerTransientException ex2)
            {
                AmTrace.Error("IsReplayRunning() failed with {0}", new object[]
                {
                    ex2
                });
            }
            return(result);
        }