class Awscr::Signer::QueryString
- Awscr::Signer::QueryString
- Reference
- Object
Overview
Represents a QueryString
. When converted to a String the keys and values
are sorted and URI encoded.
qs = QueryString.new
qs.add("k", "v")
qs.to_s # => "k&v"
Included Modules
- Enumerable({String, String})
Defined in:
awscr-signer/core/query_string.crInstance Method Summary
-
#add(k : String, v : String)
Adds a key and value to the query string
-
#each(&)
Must yield this collection's elements to the block.
-
#to_s(io : IO)
Returns the object as a string.
Instance Method Detail
def each(&)
#
Description copied from module Enumerable({String, String})
Must yield this collection's elements to the block.