ktor-http / io.ktor.http / EmptyParameters

EmptyParameters

object EmptyParameters : Parameters
Deprecated: Empty parameters is internal

Properties

caseInsensitiveName

val caseInsensitiveName: Boolean

Functions

entries

fun entries(): Set<Entry<String, List<String>>>

equals

fun equals(other: Any?): Boolean

getAll

fun getAll(name: String): List<String>?

isEmpty

fun isEmpty(): Boolean

names

fun names(): Set<String>

toString

fun toString(): String

Extension Functions

formUrlEncode

fun Parameters.formUrlEncode(): String

Encode form parameters

formUrlEncodeTo

fun Parameters.formUrlEncodeTo(out: Appendable): Unit

Encode form parameters to the specified out appendable

plus

operator fun Parameters.plus(other: Parameters): Parameters

Plus operator function that creates a new parameters instance from the original one concatenating with other