Method to attempt to parse out the value from the encoded string and sets the value of Current.

Namespace: Lucene.Net.Index
Assembly: Lucene.Net.Contrib.Core (in Lucene.Net.Contrib.Core.dll) Version: 2.9.2.0 (2.9.2)

Syntax

C#
protected abstract bool TryParse(
	string s
)
Visual Basic
Protected MustOverride Function TryParse ( _
	s As String _
) As Boolean
Visual C++
protected:
virtual bool TryParse(
	String^ s
) abstract

Parameters

s
Type: System..::..String
The encoded string.

Return Value

True if the value was successfully parsed, false if we reached the end of encoded values in the fiele and only the tries remain.

See Also