Ejemplo n.º 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));
 }
Ejemplo n.º 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);
Ejemplo n.º 3
0
 public override ValueTask <T> Read(NpgsqlReadBuffer buf, int len, bool async, FieldDescription fieldDescription = null)
 => _wrappedHandler.Read <T>(buf, len, async, fieldDescription);