AppHarbor.AliasMatcher.IsSatisfiedBy C# (CSharp) Метод

IsSatisfiedBy() публичный Метод

public IsSatisfiedBy ( string commandArgument ) : bool
commandArgument string
Результат bool
        public bool IsSatisfiedBy(string commandArgument)
        {
            try
            {
                GetMatchedType(commandArgument);
                return true;
            }
            catch (ArgumentException)
            {
            }

            return false;
        }