commonMain.com.apollographql.apollo.api.http.HttpHeaders.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apollo-api-jvm Show documentation
Show all versions of apollo-api-jvm Show documentation
Apollo GraphQL API classes
The newest version!
@file:JvmName("HttpHeaders")
package com.apollographql.apollo.api.http
import kotlin.jvm.JvmName
/**
* Get the value of the "name" header. HTTP header names are case insensitive, see https://www.w3.org/Protocols/rfc2616/rfc2616-sec4.html#sec4.2
*
* @param name: the name of the header
*/
fun List.valueOf(name: String): String? = firstOrNull { it.name.equals(name, true) }?.value
© 2015 - 2025 Weber Informatics LLC | Privacy Policy