SteamKit 2.2.0-Beta.2
Pre-release
Pre-release
- Added overloads for
CDNClient.DownloadManifestAsync
andCDNClient.DownloadDepotChunkAsync
for advanced consumers that perform their own server and key management. (#678) - The dynamic interface for WebAPI can now take a single un-named argument of
IDictionary<string, object>
instead of having to pass each argument as a named parameter. (#675) - Updated Steam enums. (#660)
BREAKING CHANGES
- WebAPI now takes a arguments dictionary as
Dictionary<string, object>
, rather thanDictionary<string, string>
. (#668)- Arguments of type
byte[]
are encoded to a URL safe representation. - Arguments of value
null
are treated as empty strings. - All other arguments are converted to
string
by callingobject.ToString()
and encoded to a URL safe representation.
- Arguments of type