public static bool TryParse(string headers, out HeaderCollection headersCollection) { bool result = false; headersCollection = null; try { headersCollection = Parse(headers); result = true; } catch { } return result; }