Files
2025-02-10 10:10:16 +00:00

10 lines
320 B
C#

namespace Toolkit.Foundation;
public interface ISerialContextFactory
{
ISerialContext<TReader, TRead, TEvent>? Create<TConfiguration, TReader, TRead, TEvent>()
where TConfiguration : ISerialConfiguration
where TReader : SerialReader<TRead>
where TEvent : SerialEventArgs<TRead>, new();
}