/
dev-npgsql
/
npgsql
Обзор
Документация
Войти
/
dev-npgsql
/
npgsql
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
v6.0.12
src/Npgsql/Logging/INpgsqlLoggingProvider.cs
10 строк
273 B
Shay Rojansky
Apply file-scoped namespaces for 6.0 (#4298)
28 янв 2022, 15:13
Не верифицирован
28 янв 2022, 15:13
2e0ad2d
Код
Авторство
О чём код?
namespace Npgsql.Logging; /// Used to create logger instances of the given name. public interface INpgsqlLoggingProvider { /// <summary> /// Creates a new INpgsqlLogger instance of the given name. /// </summary> NpgsqlLogger CreateLogger(string name); }