Compartir a través de


DbSpatialServices.PointAt Método

Definición

Sobrecargas

PointAt(DbGeography, Int32)

Devuelve un elemento de punto del valor DbGeography especificado, si representa un anillo linestring o lineal.

PointAt(DbGeometry, Int32)

Devuelve un elemento de punto del valor DbGeometry especificado, si representa un anillo linestring o lineal.

PointAt(DbGeography, Int32)

Devuelve un elemento de punto del valor DbGeography especificado, si representa un anillo linestring o lineal.

public abstract System.Data.Entity.Spatial.DbGeography PointAt (System.Data.Entity.Spatial.DbGeography geographyValue, int index);
abstract member PointAt : System.Data.Entity.Spatial.DbGeography * int -> System.Data.Entity.Spatial.DbGeography
Public MustOverride Function PointAt (geographyValue As DbGeography, index As Integer) As DbGeography

Parámetros

geographyValue
DbGeography

Valor de geografía, que no necesita representar un anillo linestring o lineal.

index
Int32

La posición dentro del valor de geografía de la que se debe tomar el elemento.

Devoluciones

Punto de geographyValue en el índice de posición, si representa una linestring o anillo lineal; en caso contrario, null.

Excepciones

geographyValue es null.

geographyValue no es compatible con esta implementación de servicios espaciales.

Se aplica a

PointAt(DbGeometry, Int32)

Devuelve un elemento de punto del valor DbGeometry especificado, si representa un anillo linestring o lineal.

public abstract System.Data.Entity.Spatial.DbGeometry PointAt (System.Data.Entity.Spatial.DbGeometry geometryValue, int index);
abstract member PointAt : System.Data.Entity.Spatial.DbGeometry * int -> System.Data.Entity.Spatial.DbGeometry
Public MustOverride Function PointAt (geometryValue As DbGeometry, index As Integer) As DbGeometry

Parámetros

geometryValue
DbGeometry

El valor de geometría, que no necesita representar un linestring o anillo lineal.

index
Int32

La posición dentro del valor de geometría de la que se debe tomar el elemento.

Devoluciones

Punto de geometryValue en el índice de posición, si representa una cadena de línea o anillo lineal; en caso contrario, null.

Excepciones

geometryValue es null.

geometryValue no es compatible con esta implementación de servicios espaciales.

Se aplica a