Exemplo n.º 1
0
 public override int ValidateAndGetLength(object value, NpgsqlParameter parameter = null)
 => InetHandler.DoValidateAndGetLength(value);
Exemplo n.º 2
0
 protected override void Write(object value, WriteBuffer buf, NpgsqlParameter parameter = null)
 => InetHandler.DoWrite(value, buf, true);
Exemplo n.º 3
0
 public override void Write(object value, WriteBuffer buf, NpgsqlParameter parameter)
 {
     InetHandler.DoWrite(value, buf, true);
 }
Exemplo n.º 4
0
 public override NpgsqlInet Read(ReadBuffer buf, int len, FieldDescription fieldDescription = null)
 => InetHandler.DoRead(buf, fieldDescription, len, true);
Exemplo n.º 5
0
 public override int ValidateAndGetLength(object value, NpgsqlParameter parameter)
 {
     return(InetHandler.DoValidateAndGetLength(value));
 }
Exemplo n.º 6
0
 public override NpgsqlInet Read(ReadBuffer buf, int len, FieldDescription fieldDescription)
 {
     return(InetHandler.DoRead(buf, fieldDescription, len, true));
 }
Exemplo n.º 7
0
 public void Write(object value, NpgsqlBuffer buf)
 {
     InetHandler.DoWrite(value, buf, true);
 }
Exemplo n.º 8
0
 public int ValidateAndGetLength(object value)
 {
     return(InetHandler.DoValidateAndGetLength(value));
 }
Exemplo n.º 9
0
 public NpgsqlInet Read(NpgsqlBuffer buf, FieldDescription fieldDescription, int len)
 {
     return(InetHandler.DoRead(buf, fieldDescription, len, true));
 }