Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Live (0.25 sec)

  1. okhttp/src/main/kotlin/okhttp3/MediaType.kt

        val charset = parameter("charset") ?: return defaultValue
        return try {
          Charset.forName(charset)
        } catch (_: IllegalArgumentException) {
          defaultValue // This charset is invalid or unsupported. Give up.
        }
      }
    
      /**
       * Returns the parameter [name] of this media type, or null if this media type does not define
       * such a parameter.
       */
      fun parameter(name: String): String? = commonParameter(name)
    
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 4.2K bytes
    - Viewed (0)
Back to top