MySqlGeometry.TryParse Method

MySQL Connector/Net

MySqlGeometryTryParse Method
Try to get value from WKT format SRID=0;POINT (x y) or POINT (x y)

Namespace: MySql.Data.Types
Assembly: MySql.Data (in MySql.Data.dll) Version: 6.9.9
Syntax
public static bool TryParse(
	string value,
	out MySqlGeometry mySqlGeometryValue
)
Public Shared Function TryParse ( 
	value As String,
	<OutAttribute> ByRef mySqlGeometryValue As MySqlGeometry
) As Boolean
public:
static bool TryParse(
	String^ value, 
	[OutAttribute] MySqlGeometry% mySqlGeometryValue
)
static member TryParse : 
        value : string * 
        mySqlGeometryValue : MySqlGeometry byref -> bool 

Parameters

value
Type: SystemString
WKT string format
mySqlGeometryValue
Type: MySql.Data.TypesMySqlGeometry

Return Value

Type: Boolean
See Also