SqlGeography.STGeometryN (Método) (Int32)
Devuelve un elemento Geography especificado en una colección GeometryCollection o en uno de sus subtipos.
Espacio de nombres: Microsoft.SqlServer.Types
Ensamblado: Microsoft.SqlServer.Types (en Microsoft.SqlServer.Types.dll)
Sintaxis
[SqlMethodAttribute(IsDeterministic = true, IsPrecise = true)]
public SqlGeography STGeometryN(
int n
)
public:
[SqlMethodAttribute(IsDeterministic = true, IsPrecise = true)]
SqlGeography^ STGeometryN(
int n
)
[<SqlMethodAttribute(IsDeterministic = true, IsPrecise = true)>]
member STGeometryN :
n:int -> SqlGeography
<SqlMethodAttribute(IsDeterministic := True, IsPrecise := True)>
Public Function STGeometryN (
n As Integer
) As SqlGeography
Parámetros
n
Type: System.Int32Expresión int entre 1 y el número de instancias de SqlGeography en la colección GeometryCollection.
Valor devuelto
Type: Microsoft.SqlServer.Types.SqlGeography
Elemento SqlGeography de la instancia especificada en la colección GeometryCollection.
Comentarios
Cuando se utiliza este método en un subtipo de un GeometryCollection, como MultiPoint o MultiLineString, este método devuelve el SqlGeography ejemplo, si se llama con N = 1.
Este método devuelve null si el parámetro es mayor que el resultado de STNumGeometries y se producirá una excepción ArgumentOutOfRangeException si el parámetro de expresión es menor que 1.
Vea también
SqlGeography (Clase)
Microsoft.SqlServer.Types (Espacio de nombres)
Volver al principio