mirror of
				https://github.com/JKorf/CryptoExchange.Net
				synced 2025-11-04 04:17:32 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			509 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			509 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using CryptoExchange.Net.Sockets;
 | 
						|
using System;
 | 
						|
using System.Collections.Generic;
 | 
						|
using System.Linq;
 | 
						|
using System.Text;
 | 
						|
using System.Threading.Tasks;
 | 
						|
 | 
						|
namespace CryptoExchange.Net.UnitTests.TestImplementations.Sockets
 | 
						|
{
 | 
						|
    internal class TestQuery : Query<object>
 | 
						|
    {
 | 
						|
        public TestQuery(string identifier, object request, bool authenticated, int weight = 1) : base(request, authenticated, weight)
 | 
						|
        {
 | 
						|
            MessageMatcher = MessageMatcher.Create<object>(identifier);
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |