Search Results for

    Show / Hide Table of Contents

    Struct NpgsqlCircle

    Represents a PostgreSQL Circle type.

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

    Constructors

    | Improve this Doc View Source

    NpgsqlCircle(NpgsqlPoint, double)

    Declaration
    public NpgsqlCircle(NpgsqlPoint center, double radius)
    Parameters
    Type Name Description
    NpgsqlPoint center
    double radius
    | Improve this Doc View Source

    NpgsqlCircle(double, double, double)

    Declaration
    public NpgsqlCircle(double x, double y, double radius)
    Parameters
    Type Name Description
    double x
    double y
    double radius

    Properties

    | Improve this Doc View Source

    Center

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

    Radius

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

    X

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

    Y

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

    Methods

    | Improve this Doc View Source

    Equals(NpgsqlCircle)

    Declaration
    public bool Equals(NpgsqlCircle other)
    Parameters
    Type Name Description
    NpgsqlCircle 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 ==(NpgsqlCircle, NpgsqlCircle)

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

    operator !=(NpgsqlCircle, NpgsqlCircle)

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

    Implements

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