AspNetEdit.Editor.Persistence.ServerObjectParsingObject.IsWhiteSpace C# (CSharp) Method

IsWhiteSpace() private method

private IsWhiteSpace ( string s ) : bool
s string
return bool
        private bool IsWhiteSpace(string s)
        {
            bool onlyWhitespace = true;
            foreach (char c in s)
                if (!Char.IsWhiteSpace (c)) {
                    onlyWhitespace = false;
                    break;
                }
            return onlyWhitespace;
        }