- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for getHeaderValue (0.2 sec)
-
src/main/java/org/codelibs/curl/CurlResponse.java
/** * Gets the value of the specified header. * * @param name the name of the header. * @return the header value, or null if the header does not exist. */ public String getHeaderValue(final String name) { final String[] values = getHeaderValues(name); if (values.length == 0) { return null; } return values[0]; }
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Sat Jul 05 01:38:18 UTC 2025 - 6.8K bytes - Viewed (0)