Search Results for

    Show / Hide Table of Contents

    Struct NpgsqlLSeg

    Represents a PostgreSQL Line Segment type.

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

    Constructors

    | Improve this Doc View Source

    NpgsqlLSeg(NpgsqlPoint, NpgsqlPoint)

    Declaration
    public NpgsqlLSeg(NpgsqlPoint start, NpgsqlPoint end)
    Parameters
    Type Name Description
    NpgsqlPoint start
    NpgsqlPoint end
    | Improve this Doc View Source

    NpgsqlLSeg(double, double, double, double)

    Declaration
    public NpgsqlLSeg(double startx, double starty, double endx, double endy)
    Parameters
    Type Name Description
    double startx
    double starty
    double endx
    double endy

    Properties

    | Improve this Doc View Source

    End

    Declaration
    public NpgsqlPoint End { readonly get; set; }
    Property Value
    Type Description
    NpgsqlPoint
    | Improve this Doc View Source

    Start

    Declaration
    public NpgsqlPoint Start { readonly get; set; }
    Property Value
    Type Description
    NpgsqlPoint

    Methods

    | Improve this Doc View Source

    Equals(NpgsqlLSeg)

    Declaration
    public bool Equals(NpgsqlLSeg other)
    Parameters
    Type Name Description
    NpgsqlLSeg other
    Returns
    Type Description
    bool
    | Improve this Doc View Source

    Equals(object?)

    Declaration
    public override bool Equals(object? obj)
    Parameters
    Type Name Description
    object? obj
    Returns
    Type Description
    bool
    | Improve this Doc View Source

    GetHashCode()

    Declaration
    public override int GetHashCode()
    Returns
    Type Description
    int
    | Improve this Doc View Source

    ToString()

    Declaration
    public override string ToString()
    Returns
    Type Description
    string

    Operators

    | Improve this Doc View Source

    operator ==(NpgsqlLSeg, NpgsqlLSeg)

    Declaration
    public static bool operator ==(NpgsqlLSeg x, NpgsqlLSeg y)
    Parameters
    Type Name Description
    NpgsqlLSeg x
    NpgsqlLSeg y
    Returns
    Type Description
    bool
    | Improve this Doc View Source

    operator !=(NpgsqlLSeg, NpgsqlLSeg)

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

    Implements

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