mCleaner.Logics.Commands.CommandLogic_JSON.Enqueue C# (CSharp) Method

Enqueue() public method

public Enqueue ( bool apply = false ) : void
apply bool
return void
        public void Enqueue(bool apply = false)
        {
            SEARCH search = (SEARCH)StringEnum.Parse(typeof(SEARCH), Action.search);

            switch (search)
            {
                case SEARCH.file:
                    ProcessJSONFile(Action.regex);
                    break;
            }
        }