Search Results for

    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 https://www.postgresql.org/docs/current/static/datatype-geometric.html

    Constructors

    | Improve this Doc View Source

    NpgsqlLine(double, double, double)

    Declaration
    public NpgsqlLine(double a, double b, double c)
    Parameters
    Type Name Description
    double a
    double b
    double c
    Remarks

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

    Properties

    | Improve this Doc View Source

    A

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

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

    | Improve this Doc View Source

    B

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

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

    | Improve this Doc View Source

    C

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

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

    Methods

    | Improve this Doc View Source

    Equals(NpgsqlLine)

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

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

    | Improve this Doc View Source

    Equals(object?)

    Declaration
    public override bool Equals(object? obj)
    Parameters
    Type Name Description
    object? obj
    Returns
    Type Description
    bool
    Remarks

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

    | Improve this Doc View Source

    GetHashCode()

    Declaration
    public override int GetHashCode()
    Returns
    Type Description
    int
    Remarks

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

    | Improve this Doc View Source

    ToString()

    Declaration
    public override string ToString()
    Returns
    Type Description
    string
    Remarks

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

    Operators

    | Improve this Doc View Source

    operator ==(NpgsqlLine, NpgsqlLine)

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

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

    | Improve this Doc View Source

    operator !=(NpgsqlLine, NpgsqlLine)

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

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

    Implements

    IEquatable<>
    • Improve this Doc
    • View Source
    In This Article
    Back to top © Copyright 2023 The Npgsql Development Team