Search Results for

    Show / Hide Table of Contents

    Struct NpgsqlLine

    Represents a PostgreSQL line type.

    Implements
    IEquatable<NpgsqlLine>
    Inherited Members
    Object.Equals(Object, Object)
    Object.GetType()
    Object.ReferenceEquals(Object, Object)
    Namespace: NpgsqlTypes
    Assembly: Npgsql.dll
    Syntax
    public struct NpgsqlLine : IEquatable<NpgsqlLine>
    Remarks

    See https://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
    Double a
    Double b
    Double c

    Properties

    A

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

    B

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

    C

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

    Methods

    Equals(NpgsqlLine)

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

    Equals(Object)

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

    GetHashCode()

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

    Parse(String)

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

    ToString()

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

    Operators

    Equality(NpgsqlLine, NpgsqlLine)

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

    Inequality(NpgsqlLine, NpgsqlLine)

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

    Implements

    System.IEquatable<T>
    In This Article
    Back to top © Copyright 2022 The Npgsql Development Team