1
0
mirror of https://github.com/JKorf/CryptoExchange.Net.git synced 2026-08-20 04:42:57 +00:00
This commit is contained in:
Artem Kurianov
2020-08-17 08:44:30 +00:00
parent 9b8950747f
commit fb61b6931b
7 changed files with 3089 additions and 3127 deletions
+1 -1
View File
@@ -29,7 +29,7 @@ namespace CryptoExchange.Net.Interfaces
/// <summary>
/// internal request id for tracing
/// </summary>
string? RequestId { get; }
string RequestId { get; }
/// <summary>
/// Set byte content
/// </summary>
@@ -21,8 +21,7 @@ namespace CryptoExchange.Net.Interfaces
/// Configure the requests created by this factory
/// </summary>
/// <param name="requestTimeout">Request timeout to use</param>
/// <param name="proxy">Proxy settings to use</param>
/// <param name="isTracingEnabled">Should generate unique id for requests</param>
void Configure(TimeSpan requestTimeout, ApiProxy? proxy, bool isTracingEnabled=false);
/// <param name="proxy">Proxy settings to use</param>
void Configure(TimeSpan requestTimeout, ApiProxy? proxy);
}
}