AppHarbor.AliasMatcher.IsSatisfiedBy C# (CSharp) Méthode

IsSatisfiedBy() public méthode

public IsSatisfiedBy ( string commandArgument ) : bool
commandArgument string
Résultat bool
        public bool IsSatisfiedBy(string commandArgument)
        {
            try
            {
                GetMatchedType(commandArgument);
                return true;
            }
            catch (ArgumentException)
            {
            }

            return false;
        }