/
dev-npgsql
/
npgsql
Обзор
Документация
Войти
/
dev-npgsql
/
npgsql
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
test-logs
test/Npgsql.Tests/Support/PgCancellationRequest.cs
24 строки
514 B
Nino Floris
Remove obsolete UTF-8 BOMs (#6542)
13 апр 2026, 17:13
Не верифицирован
13 апр 2026, 17:13
5225216
Код
Авторство
О чём код?
using System.IO; using Npgsql.Internal; namespace Npgsql.Tests.Support; class PgCancellationRequest(NpgsqlReadBuffer readBuffer, NpgsqlWriteBuffer writeBuffer, Stream stream, int processId, int secret) { public int ProcessId { get; } = processId; public int Secret { get; } = secret; bool completed; public void Complete() { if (completed) return; readBuffer.Dispose(); writeBuffer.Dispose(); stream.Dispose(); completed = true; } }