Google.Maps.Constants.IsExpectedNamedColor C# (CSharp) Method

IsExpectedNamedColor() public static method

public static IsExpectedNamedColor ( string value ) : bool
value string
return bool
        public static bool IsExpectedNamedColor(string value)
        {
            if(value == null) return false;
            return (Contains(S_ExpectedNamedColors, value, true));
        }