MCPcopy Create free account
hub / github.com/UiPath/uipathcli / Add

Method Add

utils/converter/query_string_builder.go:22–30  ·  view source on GitHub ↗
(name string, value interface{})

Source from the content-addressed store, hash-verified

20}
21
22func (b *QueryStringBuilder) Add(name string, value interface{}) *QueryStringBuilder {
23 param := b.formatQueryStringParam(name, value)
24 if b.querystring == "" {
25 b.querystring = param
26 } else {
27 b.querystring = b.querystring + "&" + param
28 }
29 return b
30}
31
32func (b *QueryStringBuilder) Build() string {
33 return b.querystring

Callers 12

writeUrlEncodedBodyMethod · 0.95
ExecuteAndWaitMethod · 0.80
executeAllMethod · 0.80
AddQueryStringMethod · 0.80
GetTokenMethod · 0.80
createFormMethod · 0.80
executeMethod · 0.80

Calls 1