コード例 #1
0
 internal static PostgresException Load(NpgsqlReadBuffer buf)
 => new PostgresException(ErrorOrNoticeMessage.Load(buf));
コード例 #2
0
 internal static PostgresNotice Load(NpgsqlReadBuffer buf, bool suppressDetailInPostgressError)
 => new PostgresNotice(ErrorOrNoticeMessage.Load(buf, suppressDetailInPostgressError));
コード例 #3
0
 internal static PostgresNotice Load(NpgsqlReadBuffer buf, bool includeDetail)
 => new PostgresNotice(ErrorOrNoticeMessage.Load(buf, includeDetail));
コード例 #4
0
 internal static PostgresNotice Load(NpgsqlReadBuffer buf)
 => new PostgresNotice(ErrorOrNoticeMessage.Load(buf));