TryParse Method

MySQL Connector.Net

Collapse image Expand Image Copy image CopyHover image
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.8.4.0

Syntax

C#
public static bool TryParse(
	string value,
	out MySqlGeometry mySqlGeometryValue
)
Visual Basic
Public Shared Function TryParse ( _
	value As String, _
	<OutAttribute> ByRef mySqlGeometryValue As MySqlGeometry _
) As Boolean
Visual C++
public:
static bool TryParse(
	String^ value, 
	[OutAttribute] MySqlGeometry% mySqlGeometryValue
)

Parameters

value
Type: System..::..String
WKT string format
mySqlGeometryValue
Type: MySql.Data.Types..::..MySqlGeometry%

See Also