1
0
mirror of https://github.com/JKorf/CryptoExchange.Net.git synced 2026-08-19 20:33:03 +00:00

Changed requestId to int, added it to more logging related to requests. Added some comments

This commit is contained in:
JKorf
2020-08-24 12:01:49 +02:00
parent c8a6a2ec12
commit 664cbee8dd
8 changed files with 93 additions and 211 deletions
+1 -1
View File
@@ -29,7 +29,7 @@ namespace CryptoExchange.Net.Interfaces
/// <summary>
/// internal request id for tracing
/// </summary>
string RequestId { get; }
int RequestId { get; }
/// <summary>
/// Set byte content
/// </summary>
@@ -14,8 +14,9 @@ namespace CryptoExchange.Net.Interfaces
/// </summary>
/// <param name="method"></param>
/// <param name="uri"></param>
/// <param name="requestId"></param>
/// <returns></returns>
IRequest Create(HttpMethod method, string uri);
IRequest Create(HttpMethod method, string uri, int requestId);
/// <summary>
/// Configure the requests created by this factory