mirror of
https://github.com/JKorf/CryptoExchange.Net
synced 2026-04-12 16:13:12 +00:00
Updated WebSocket message routing improving performance for scenarios with multiple different subscriptions and topics Added AddCommaSeparated helper for Enum value arrays to ParameterCollection Improved EnumConverter performance and removed string allocation for happy path Fixed CreateParamString extension method for ArrayParametersSerialization.Json Fixed Shared GetOrderBookOptions and GetRecentTradeOptions base validations not being called
21 lines
718 B
C#
21 lines
718 B
C#
using CryptoExchange.Net.Authentication;
|
|
using CryptoExchange.Net.Clients;
|
|
using CryptoExchange.Net.Objects;
|
|
using System.Collections.Generic;
|
|
|
|
namespace CryptoExchange.Net.UnitTests.Implementations
|
|
{
|
|
internal class TestAuthenticationProvider : AuthenticationProvider<TestCredentials, TestCredentials>
|
|
{
|
|
public TestAuthenticationProvider(TestCredentials credentials) : base(credentials, credentials)
|
|
{
|
|
}
|
|
|
|
public override void ProcessRequest(RestApiClient apiClient, RestRequestConfiguration requestConfig)
|
|
{
|
|
requestConfig.Headers ??= new Dictionary<string, string>();
|
|
requestConfig.Headers["Authorization"] = Credential.Key;
|
|
}
|
|
}
|
|
}
|