SenseNet.ContentRepository.Storage.RepositoryPath.NameContainsInvalidChar C# (CSharp) Method

NameContainsInvalidChar() public static method

public static NameContainsInvalidChar ( string s ) : bool
s string
return bool
        public static bool NameContainsInvalidChar(string s)
        {
            var stripped = new Regex(InvalidNameCharsPattern).Replace(s, string.Empty);
            return stripped != s;
        }
        public static bool PathContainsInvalidChar(string s)