TryReadGeometry Method
Parses some serialized format that represents a geometric spatial value, passing the result down the pipeline.
Namespace: System.Spatial
Assembly: System.Spatial (in System.Spatial.dll)
Syntax
'Declaration
Protected MustOverride Function TryReadGeometry ( _
input As TSource, _
<OutAttribute> ByRef errorMessage As String _
) As Boolean
'Usage
Dim input As TSource
Dim errorMessage As String
Dim returnValue As Boolean
returnValue = Me.TryReadGeometry(input, _
errorMessage)
protected abstract bool TryReadGeometry(
TSource input,
out string errorMessage
)
protected:
virtual bool TryReadGeometry(
TSource input,
[OutAttribute] String^% errorMessage
) abstract
abstract TryReadGeometry :
input:'TSource *
errorMessage:string byref -> bool
protected abstract function TryReadGeometry(
input : TSource,
errorMessage : String
) : boolean
Parameters
- input
Type: TSource
The input string.
- errorMessage
Type: System..::..String%
The error message to report to the developer.
Return Value
Type: System..::..Boolean
Is true if the read is successful, is false otherwise.