Ktor
Toggle table of contents
3.3.x
Select version
3.4.x
3.3.x
3.2.x
3.1.x
3.0.x
2.3.x
2.2.x
2.0.x
1.6.x
common
Target filter
common
Switch theme
Search in API
Skip to content
Ktor
ktor-http
/
io.ktor.http
/
ParametersBuilder
Parameters
Builder
interface
ParametersBuilder
:
StringValuesBuilder
(
source
)
Inheritors
ParametersBuilderImpl
Members
Members & Extensions
Properties
case
Insensitive
Name
Link copied to clipboard
abstract
val
caseInsensitiveName
:
Boolean
Functions
append
Link copied to clipboard
abstract
fun
append
(
name
:
String
,
value
:
String
)
append
Link copied to clipboard
fun
StringValuesBuilder
.
append
(
name
:
String
,
value
:
HeaderValueWithParameters
)
Append formatted header value to the builder
append
All
Link copied to clipboard
abstract
fun
appendAll
(
stringValues
:
StringValues
)
abstract
fun
appendAll
(
name
:
String
,
values
:
Iterable
<
String
>
)
append
Missing
Link copied to clipboard
abstract
fun
appendMissing
(
stringValues
:
StringValues
)
abstract
fun
appendMissing
(
name
:
String
,
values
:
Iterable
<
String
>
)
build
Link copied to clipboard
abstract
override
fun
build
(
)
:
Parameters
clear
Link copied to clipboard
abstract
fun
clear
(
)
contains
Link copied to clipboard
abstract
operator
fun
contains
(
name
:
String
)
:
Boolean
abstract
fun
contains
(
name
:
String
,
value
:
String
)
:
Boolean
entries
Link copied to clipboard
abstract
fun
entries
(
)
:
Set
<
Map.Entry
<
String
,
List
<
String
>
>
>
get
Link copied to clipboard
abstract
operator
fun
get
(
name
:
String
)
:
String
?
get
All
Link copied to clipboard
abstract
fun
getAll
(
name
:
String
)
:
List
<
String
>
?
is
Empty
Link copied to clipboard
abstract
fun
isEmpty
(
)
:
Boolean
names
Link copied to clipboard
abstract
fun
names
(
)
:
Set
<
String
>
remove
Link copied to clipboard
abstract
fun
remove
(
name
:
String
)
abstract
fun
remove
(
name
:
String
,
value
:
String
)
:
Boolean
remove
Keys
With
No
Entries
Link copied to clipboard
abstract
fun
removeKeysWithNoEntries
(
)
set
Link copied to clipboard
abstract
operator
fun
set
(
name
:
String
,
value
:
String
)