System.Net.Http.CurlResponseHeaderReader.ValidHeaderNameChar C# (CSharp) 메소드

ValidHeaderNameChar() 개인적인 정적인 메소드

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