Compartir a través de


Método SqlGeography.RingN (Int32)

 

Devuelve el anillo especificado de la instancia SqlGeography: 1 ≤ n ≤ NumRings().

Espacio de nombres:   Microsoft.SqlServer.Types
Ensamblado:  Microsoft.SqlServer.Types (en Microsoft.SqlServer.Types.dll)

Sintaxis

[SqlMethodAttribute(IsDeterministic = true, IsPrecise = true)]
public SqlGeography RingN(
    int n
)
public:
[SqlMethodAttribute(IsDeterministic = true, IsPrecise = true)]
SqlGeography^ RingN(
    int n
)
[<SqlMethodAttribute(IsDeterministic = true, IsPrecise = true)>]
member RingN : 
        n:int -> SqlGeography
<SqlMethodAttribute(IsDeterministic := True, IsPrecise := True)>
Public Function RingN (
    n As Integer
) As SqlGeography

Parámetros

  • n
    Type: System.Int32

    Expresión de tipo int comprendido entre 1 y el número de anillos de una instancia de polygon.

Valor devuelto

Type: Microsoft.SqlServer.Types.SqlGeography

Objeto SqlGeography que representa el anillo especificado por n.

Comentarios

Si el valor de índice de anillos n es menor que 1, este método produce una ArgumentOutOfRangeException. El valor de índice del anillo debe ser mayor o igual que 1 y debe ser menor o igual que el número devuelto por NumRings.

Ver también

Clase SqlGeography
Espacio de nombres Microsoft.SqlServer.Types

Volver al principio