1
0
mirror of https://github.com/JKorf/CryptoExchange.Net.git synced 2026-08-13 17:33:02 +00:00

Added option to send additional headers for each request or for individual requests, added HttpMethod parameter position configuration to rest client

This commit is contained in:
Jkorf
2021-09-15 14:48:19 +02:00
parent f5df46a8a5
commit d1a2856a08
9 changed files with 203 additions and 196 deletions
+4 -4
View File
@@ -16,16 +16,16 @@
}
/// <summary>
/// Where the parameters for a post request should be added
/// Where the parameters for a HttpMethod should be added in a request
/// </summary>
public enum PostParameters
public enum HttpMethodParameterPosition
{
/// <summary>
/// Post parameters in body
/// Parameters in body
/// </summary>
InBody,
/// <summary>
/// Post parameters in url
/// Parameters in url
/// </summary>
InUri
}