[Missing <summary> documentation for "M:Lucene.Net.Analysis.Standard.StandardAnalyzer.SetReplaceInvalidAcronym(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 virtual void SetReplaceInvalidAcronym(
	bool replaceInvalidAcronym
)
Visual Basic
<ObsoleteAttribute("This will be removed (hardwired to true) in 3.0")> _
Public Overridable Sub SetReplaceInvalidAcronym ( _
	replaceInvalidAcronym As Boolean _
)
Visual C++
[ObsoleteAttribute(L"This will be removed (hardwired to true) in 3.0")]
public:
virtual void SetReplaceInvalidAcronym(
	bool replaceInvalidAcronym
)

Parameters

replaceInvalidAcronym
Type: System..::..Boolean
Set to true if this Analyzer is replacing mischaracterized acronyms in the StandardTokenizer See https://issues.apache.org/jira/browse/LUCENE-1068

See Also