internal static PostgresException Load(NpgsqlReadBuffer buf)
 => new PostgresException(ErrorOrNoticeMessage.Load(buf));
Exemple #2
0
 internal static PostgresNotice Load(NpgsqlReadBuffer buf, bool suppressDetailInPostgressError)
 => new PostgresNotice(ErrorOrNoticeMessage.Load(buf, suppressDetailInPostgressError));
Exemple #3
0
 internal static PostgresNotice Load(NpgsqlReadBuffer buf, bool includeDetail)
 => new PostgresNotice(ErrorOrNoticeMessage.Load(buf, includeDetail));
 internal static PostgresNotice Load(NpgsqlReadBuffer buf)
 => new PostgresNotice(ErrorOrNoticeMessage.Load(buf));