System.Net.Http.CurlResponseHeaderReader.ValidHeaderNameChar C# (CSharp) Method

ValidHeaderNameChar() private static method

private static ValidHeaderNameChar ( byte c ) : bool
c byte
return bool
        private static bool ValidHeaderNameChar(byte c)
        {
            const string invalidChars = "()<>@,;:\\\"/[]?={}";
            return c > ' ' && invalidChars.IndexOf((char)c) < 0;
        }