public bool OnExecAction()

in Source/Program.cs [380:399]


        public bool OnExecAction(string command)
        {
            command = command.ToLower();

            if (!command.StartsWith("livematrix "))
                return false;

            command = command.Remove(0, 11);

            if (command.Equals("-edit", StringComparison.OrdinalIgnoreCase))
            {
                EditBlockedServices();
            }
            else
            {
                ChangeStatusText("XboxLiveResiliencyPluginForFiddler command not found.");
            }

            return true;
        }