Пример #1
0
 public override ValueTask <T> Read(NpgsqlReadBuffer buf, int len, bool async, FieldDescription fieldDescription = null)
 {
     if (_wrappedHandler == null)
     {
         WrapHandler();
     }
     Debug.Assert(_wrappedHandler != null);
     return(_wrappedHandler.Read <T>(buf, len, async, fieldDescription));
 }
Пример #2
0
 public override ValueTask <T> Read(NpgsqlReadBuffer buf, int len, bool async, FieldDescription?fieldDescription = null, CancellationToken cancellationToken = default)
 => _wrappedHandler.Read <T>(buf, len, async, fieldDescription, cancellationToken);
Пример #3
0
 public override ValueTask <T> Read(NpgsqlReadBuffer buf, int len, bool async, FieldDescription fieldDescription = null)
 => _wrappedHandler.Read <T>(buf, len, async, fieldDescription);