AnalyzeTextOptions Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
| Name | Description |
|---|---|
| AnalyzeTextOptions(String) |
Initializes a new instance of AnalyzeTextOptions. |
| AnalyzeTextOptions(String, LexicalAnalyzerName) |
Initializes a new instance of AnalyzeRequest. |
| AnalyzeTextOptions(String, LexicalTokenizerName) |
Initializes a new instance of AnalyzeRequest. |
AnalyzeTextOptions(String)
- Source:
- AnalyzeTextOptions.cs
- Source:
- AnalyzeTextOptions.cs
Initializes a new instance of AnalyzeTextOptions.
public AnalyzeTextOptions(string text);
new Azure.Search.Documents.Indexes.Models.AnalyzeTextOptions : string -> Azure.Search.Documents.Indexes.Models.AnalyzeTextOptions
Public Sub New (text As String)
Parameters
- text
- String
The text to break into tokens.
Exceptions
text is null.
Applies to
AnalyzeTextOptions(String, LexicalAnalyzerName)
- Source:
- AnalyzeTextOptions.cs
- Source:
- AnalyzeTextOptions.cs
Initializes a new instance of AnalyzeRequest.
public AnalyzeTextOptions(string text, Azure.Search.Documents.Indexes.Models.LexicalAnalyzerName analyzerName);
new Azure.Search.Documents.Indexes.Models.AnalyzeTextOptions : string * Azure.Search.Documents.Indexes.Models.LexicalAnalyzerName -> Azure.Search.Documents.Indexes.Models.AnalyzeTextOptions
Public Sub New (text As String, analyzerName As LexicalAnalyzerName)
Parameters
- text
- String
Required text to break into tokens.
- analyzerName
- LexicalAnalyzerName
The name of the analyzer to use to break the given text.
Exceptions
text is null.
Applies to
AnalyzeTextOptions(String, LexicalTokenizerName)
- Source:
- AnalyzeTextOptions.cs
- Source:
- AnalyzeTextOptions.cs
Initializes a new instance of AnalyzeRequest.
public AnalyzeTextOptions(string text, Azure.Search.Documents.Indexes.Models.LexicalTokenizerName tokenizerName);
new Azure.Search.Documents.Indexes.Models.AnalyzeTextOptions : string * Azure.Search.Documents.Indexes.Models.LexicalTokenizerName -> Azure.Search.Documents.Indexes.Models.AnalyzeTextOptions
Public Sub New (text As String, tokenizerName As LexicalTokenizerName)
Parameters
- text
- String
Required text to break into tokens.
- tokenizerName
- LexicalTokenizerName
The name of the tokenizer to use to break the given text.
Exceptions
text is null.