/
krasninja
/
querycat
Обзор
Документация
Войти
/
krasninja
/
querycat
Код
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/QueryCat.Backend.Core/Data/IRowsFormatter.cs
22 строки
702 B
Ivan Kozhin
Create Core module, move main classes there
24 авг 2023, 19:38
24 авг 2023, 19:38
4588519
Код
Авторство
О чём код?
namespace QueryCat.Backend.Core.Data; /// <summary> /// Provides method to create input and output of specific format (type). /// </summary> public interface IRowsFormatter { /// <summary> /// Create input formatter. /// </summary> /// <param name="input">Input stream.</param> /// <param name="key">Unique key.</param> /// <returns>Instance of <see cref="IRowsInput" />.</returns> IRowsInput OpenInput(Stream input, string? key = null); /// <summary> /// Create output formatter. /// </summary> /// <param name="output">Output stream.</param> /// <returns>Instance of <see cref="IRowsOutput" />.</returns> IRowsOutput OpenOutput(Stream output); }