Show / Hide Table of Contents

Struct NpgsqlLine

Represents a PostgreSQL line type.

Implements
IEquatable<NpgsqlLine>
Namespace: NpgsqlTypes
Assembly: Npgsql.dll
Syntax
public struct NpgsqlLine : IEquatable<NpgsqlLine>
Remarks

See http://www.postgresql.org/docs/current/static/datatype-geometric.html

Constructors

NpgsqlLine(Double, Double, Double)

Declaration
public NpgsqlLine(double a, double b, double c)
Parameters
Type Name Description
System.Double a
System.Double b
System.Double c

Properties

A

Declaration
public double A { get; set; }
Property Value
Type Description
System.Double

B

Declaration
public double B { get; set; }
Property Value
Type Description
System.Double

C

Declaration
public double C { get; set; }
Property Value
Type Description
System.Double

Methods

Equals(NpgsqlLine)

Declaration
public bool Equals(NpgsqlLine other)
Parameters
Type Name Description
NpgsqlLine other
Returns
Type Description
System.Boolean

Equals(Object)

Declaration
public override bool Equals(object obj)
Parameters
Type Name Description
System.Object obj
Returns
Type Description
System.Boolean

GetHashCode()

Declaration
public override int GetHashCode()
Returns
Type Description
System.Int32

Parse(String)

Declaration
public static NpgsqlLine Parse(string s)
Parameters
Type Name Description
System.String s
Returns
Type Description
NpgsqlLine

ToString()

Declaration
public override string ToString()
Returns
Type Description
System.String

Operators

Equality(NpgsqlLine, NpgsqlLine)

Declaration
public static bool operator ==(NpgsqlLine x, NpgsqlLine y)
Parameters
Type Name Description
NpgsqlLine x
NpgsqlLine y
Returns
Type Description
System.Boolean

Inequality(NpgsqlLine, NpgsqlLine)

Declaration
public static bool operator !=(NpgsqlLine x, NpgsqlLine y)
Parameters
Type Name Description
NpgsqlLine x
NpgsqlLine y
Returns
Type Description
System.Boolean

Implements

IEquatable<>
Back to top Copyright © 2015-2017 Microsoft
Generated by DocFX