[Missing <summary> documentation for "M:Lucene.Net.Analysis.Standard.StandardAnalyzer.SetDefaultReplaceInvalidAcronym(System.Boolean)"]

Namespace: Lucene.Net.Analysis.Standard
Assembly: Lucene.Net (in Lucene.Net.dll) Version: 2.9.4.1

Syntax

C#
[ObsoleteAttribute("This will be removed (hardwired to true) in 3.0")]
public static void SetDefaultReplaceInvalidAcronym(
	bool replaceInvalidAcronym
)
Visual Basic
<ObsoleteAttribute("This will be removed (hardwired to true) in 3.0")> _
Public Shared Sub SetDefaultReplaceInvalidAcronym ( _
	replaceInvalidAcronym As Boolean _
)
Visual C++
[ObsoleteAttribute(L"This will be removed (hardwired to true) in 3.0")]
public:
static void SetDefaultReplaceInvalidAcronym(
	bool replaceInvalidAcronym
)

Parameters

replaceInvalidAcronym
Type: System..::..Boolean
Set to true to have new instances of StandardTokenizer replace mischaracterized acronyms by default. Set to false to preserve the previous (before 2.4) buggy behavior. Alternatively, set the system property Lucene.Net.Analysis.Standard.StandardAnalyzer.replaceInvalidAcronym to false. See https://issues.apache.org/jira/browse/LUCENE-1068

See Also