- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for commonRemoveHeader (0.13 sec)
-
okhttp/src/main/kotlin/okhttp3/Request.kt
import okhttp3.internal.commonHeaders import okhttp3.internal.commonMethod import okhttp3.internal.commonPatch import okhttp3.internal.commonPost import okhttp3.internal.commonPut import okhttp3.internal.commonRemoveHeader import okhttp3.internal.commonTag import okhttp3.internal.commonToString /** * An HTTP request. Instances of this class are immutable if their [body] is null or itself * immutable. */
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Apr 06 04:17:44 UTC 2024 - 10.5K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/-ResponseCommon.kt
) = apply { headers[name] = value } fun Response.Builder.commonAddHeader( name: String, value: String, ) = apply { headers.add(name, value) } fun Response.Builder.commonRemoveHeader(name: String) = apply { headers.removeAll(name) } fun Response.Builder.commonHeaders(headers: Headers) = apply { this.headers = headers.newBuilder() }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Apr 15 13:24:48 UTC 2024 - 5.2K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/-RequestCommon.kt
value: String, ) = apply { headers[name] = value } fun Request.Builder.commonAddHeader( name: String, value: String, ) = apply { headers.add(name, value) } fun Request.Builder.commonRemoveHeader(name: String) = apply { headers.removeAll(name) } fun Request.Builder.commonHeaders(headers: Headers) = apply { this.headers = headers.newBuilder() }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 4.1K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/Response.kt
import okhttp3.internal.commonNetworkResponse import okhttp3.internal.commonNewBuilder import okhttp3.internal.commonPriorResponse import okhttp3.internal.commonProtocol import okhttp3.internal.commonRemoveHeader import okhttp3.internal.commonRequest import okhttp3.internal.commonToString import okhttp3.internal.commonTrailers import okhttp3.internal.connection.Exchange import okhttp3.internal.http.parseChallenges
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Jul 06 09:38:30 UTC 2024 - 15.6K bytes - Viewed (0)