GitSharp.Core.Transport.OpenSshConfig.isHostPattern C# (CSharp) Method

isHostPattern() private static method

private static isHostPattern ( string s ) : bool
s string
return bool
        private static bool isHostPattern(string s)
        {
            return s.IndexOf('*') >= 0 || s.IndexOf('?') >= 0;
        }