/
dev-npgsql
/
npgsql
Обзор
Документация
Войти
/
dev-npgsql
/
npgsql
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
v6.0.11
src/Npgsql/BackendMessages/DataRowMessage.cs
19 строк
540 B
Shay Rojansky
Apply file-scoped namespaces for 6.0 (#4298)
28 янв 2022, 15:13
Не верифицирован
28 янв 2022, 15:13
2e0ad2d
Код
Авторство
О чём код?
namespace Npgsql.BackendMessages; /// <summary> /// DataRow is special in that it does not parse the actual contents of the backend message, /// because in sequential mode the message will be traversed and processed sequentially by /// <see cref="NpgsqlDataReader"/>. /// </summary> class DataRowMessage : IBackendMessage { public BackendMessageCode Code => BackendMessageCode.DataRow; internal int Length { get; private set; } internal DataRowMessage Load(int len) { Length = len; return this; } }