/
dev-npgsql
/
npgsql
Обзор
Документация
Войти
/
dev-npgsql
/
npgsql
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
test-logs
src/Npgsql/PostgresTypes/PostgresUnknownType.cs
16 строк
469 B
Nino Floris
Remove obsolete UTF-8 BOMs (#6542)
13 апр 2026, 17:13
Не верифицирован
13 апр 2026, 17:13
5225216
Код
Авторство
О чём код?
using Npgsql.Internal.Postgres; namespace Npgsql.PostgresTypes; /// <summary> /// Represents a PostgreSQL data type that isn't known to Npgsql and cannot be handled. /// </summary> public sealed class UnknownBackendType : PostgresType { internal static readonly PostgresType Instance = new UnknownBackendType(); /// <summary> /// Constructs a the unknown backend type. /// </summary> UnknownBackendType() : base(DataTypeName.Unspecified,0) { } }