Apache.Shiro.Util.StringUtils.HasText C# (CSharp) Method

HasText() public static method

public static HasText ( string value ) : bool
value string
return bool
        public static bool HasText(string value)
        {
            return !string.IsNullOrWhiteSpace(value);
        }