Partager via


SqlGeography.STMLineFromText méthode (SqlChars, Int32)

 

Retourne une instance SqlGeography à partir d'une représentation OGC (Open Geospatial Consortium) WKT (Well-Known Text) augmentée des valeurs Z (élévation) et M (mesure) apportées par l'instance.

Espace de noms:   Microsoft.SqlServer.Types
Assembly:  Microsoft.SqlServer.Types (dans Microsoft.SqlServer.Types.dll)

Syntaxe

[SqlMethodAttribute(IsDeterministic = true, IsPrecise = false)]
public static SqlGeography STMLineFromText(
    SqlChars multiLineStringTaggedText,
    int srid
)
public:
[SqlMethodAttribute(IsDeterministic = true, IsPrecise = false)]
static SqlGeography^ STMLineFromText(
    SqlChars^ multiLineStringTaggedText,
    int srid
)
[<SqlMethodAttribute(IsDeterministic = true, IsPrecise = false)>]
static member STMLineFromText : 
        multiLineStringTaggedText:SqlChars *
        srid:int -> SqlGeography
<SqlMethodAttribute(IsDeterministic := True, IsPrecise := False)>
Public Shared Function STMLineFromText (
    multiLineStringTaggedText As SqlChars,
    srid As Integer
) As SqlGeography

Paramètres

  • srid
    Type: System.Int32

    Expression d'entier qui représente l'ID de référence spatial (SRID) de l'instance SqlGeographyMultiLineString à retourner.

Valeur de retour

Type: Microsoft.SqlServer.Types.SqlGeography

Un SqlGeography instance construite à partir de la représentation WKT spécifiée.

Notes

Cette méthode lève une exception FormatException si l’entrée n’est pas formatée correctement.

Voir aussi

SqlGeography classe
Microsoft.SqlServer.Types espace de noms

Retour au début