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

    Constructors

    | Improve this Doc

    NpgsqlLine(Double, Double, Double)

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

    Properties

    | Improve this Doc

    A

    Declaration
    public double A { readonly get; set; }
    Property Value
    Type Description
    Double
    | Improve this Doc

    B

    Declaration
    public double B { readonly get; set; }
    Property Value
    Type Description
    Double
    | Improve this Doc

    C

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

    Methods

    | Improve this Doc

    Equals(NpgsqlLine)

    Declaration
    public bool Equals(NpgsqlLine other)
    Parameters
    Type Name Description
    NpgsqlLine other
    Returns
    Type Description
    Boolean
    | Improve this Doc

    Equals(Object)

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

    GetHashCode()

    Declaration
    public override int GetHashCode()
    Returns
    Type Description
    Int32
    Overrides
    ValueType.GetHashCode()
    | Improve this Doc

    Parse(String)

    Declaration
    public static NpgsqlLine Parse(string s)
    Parameters
    Type Name Description
    String s
    Returns
    Type Description
    NpgsqlLine
    | Improve this Doc

    ToString()

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

    Operators

    | Improve this Doc

    Equality(NpgsqlLine, NpgsqlLine)

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

    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>
    • Improve this Doc
    In This Article
    Back to top © Copyright 2021 The Npgsql Development Team