Search Results for

    Show / Hide Table of Contents

    Class PostgisPoint

    Represents an Postgis 2D Point

    Inheritance
    Object
    PostgisGeometry
    PostgisPoint
    Implements
    IEquatable<PostgisPoint>
    Inherited Members
    PostgisGeometry.SRID
    Object.Equals(Object, Object)
    Object.GetType()
    Object.MemberwiseClone()
    Object.ReferenceEquals(Object, Object)
    Object.ToString()
    Namespace: Npgsql.LegacyPostgis
    Assembly: Npgsql.LegacyPostgis.dll
    Syntax
    public class PostgisPoint : PostgisGeometry, IEquatable<PostgisPoint>

    Constructors

    | Improve this Doc

    PostgisPoint(Double, Double)

    Declaration
    public PostgisPoint(double x, double y)
    Parameters
    Type Name Description
    Double x
    Double y

    Properties

    | Improve this Doc

    X

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

    Y

    Declaration
    public double Y { get; }
    Property Value
    Type Description
    Double

    Methods

    | Improve this Doc

    Equals(PostgisPoint)

    Declaration
    public bool Equals(PostgisPoint other)
    Parameters
    Type Name Description
    PostgisPoint 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
    Object.Equals(Object)
    | Improve this Doc

    GetHashCode()

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

    GetLenHelper()

    Declaration
    protected override int GetLenHelper()
    Returns
    Type Description
    Int32
    Overrides
    PostgisGeometry.GetLenHelper()

    Operators

    | Improve this Doc

    Equality(PostgisPoint, PostgisPoint)

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

    Inequality(PostgisPoint, PostgisPoint)

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

    Implements

    System.IEquatable<T>
    • Improve this Doc
    In This Article
    Back to top © Copyright 2021 The Npgsql Development Team