TextAnalysisModelFactory.KeyPhrasesActionResult Method
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.
Initializes a new instance of KeyPhrasesActionResult.
public static Azure.AI.Language.Text.KeyPhrasesActionResult KeyPhrasesActionResult (string id = default, System.Collections.Generic.IEnumerable<Azure.AI.Language.Text.DocumentWarning> warnings = default, Azure.AI.Language.Text.DocumentStatistics statistics = default, System.Collections.Generic.IEnumerable<string> keyPhrases = default, Azure.AI.Language.Text.DetectedLanguage detectedLanguage = default);
static member KeyPhrasesActionResult : string * seq<Azure.AI.Language.Text.DocumentWarning> * Azure.AI.Language.Text.DocumentStatistics * seq<string> * Azure.AI.Language.Text.DetectedLanguage -> Azure.AI.Language.Text.KeyPhrasesActionResult
Public Shared Function KeyPhrasesActionResult (Optional id As String = Nothing, Optional warnings As IEnumerable(Of DocumentWarning) = Nothing, Optional statistics As DocumentStatistics = Nothing, Optional keyPhrases As IEnumerable(Of String) = Nothing, Optional detectedLanguage As DetectedLanguage = Nothing) As KeyPhrasesActionResult
Parameters
- id
- String
Unique, non-empty document identifier.
- warnings
- IEnumerable<DocumentWarning>
Warnings encountered while processing document.
- statistics
- DocumentStatistics
if showStats=true was specified in the request this field will contain information about the document payload.
- keyPhrases
- IEnumerable<String>
A list of representative words or phrases. The number of key phrases returned is proportional to the number of words in the input document.
- detectedLanguage
- DetectedLanguage
If 'language' is set to 'auto' for the document in the request this field will contain a 2 letter ISO 639-1 representation of the language detected for this document.
Returns
A new KeyPhrasesActionResult instance for mocking.