你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

TextAnalyticsModelFactory.DetectLanguageResult Method

Definition

Overloads

DetectLanguageResult(String, TextAnalyticsError)

Initializes a new instance of DetectLanguageResult for mocking purposes.

DetectLanguageResult(String, TextDocumentStatistics, DetectedLanguage)

Initializes a new instance of DetectLanguageResult for mocking purposes.

DetectLanguageResult(String, TextAnalyticsError)

Source:
TextAnalyticsModelFactory.cs

Initializes a new instance of DetectLanguageResult for mocking purposes.

public static Azure.AI.TextAnalytics.DetectLanguageResult DetectLanguageResult(string id, Azure.AI.TextAnalytics.TextAnalyticsError error);
static member DetectLanguageResult : string * Azure.AI.TextAnalytics.TextAnalyticsError -> Azure.AI.TextAnalytics.DetectLanguageResult
Public Shared Function DetectLanguageResult (id As String, error As TextAnalyticsError) As DetectLanguageResult

Parameters

id
String

Sets the Id property.

error
TextAnalyticsError

Sets the Error property.

Returns

A new instance of DetectLanguageResult for mocking purposes.

Applies to

DetectLanguageResult(String, TextDocumentStatistics, DetectedLanguage)

Source:
TextAnalyticsModelFactory.cs

Initializes a new instance of DetectLanguageResult for mocking purposes.

public static Azure.AI.TextAnalytics.DetectLanguageResult DetectLanguageResult(string id, Azure.AI.TextAnalytics.TextDocumentStatistics statistics, Azure.AI.TextAnalytics.DetectedLanguage detectedLanguage);
static member DetectLanguageResult : string * Azure.AI.TextAnalytics.TextDocumentStatistics * Azure.AI.TextAnalytics.DetectedLanguage -> Azure.AI.TextAnalytics.DetectLanguageResult
Public Shared Function DetectLanguageResult (id As String, statistics As TextDocumentStatistics, detectedLanguage As DetectedLanguage) As DetectLanguageResult

Parameters

id
String

Sets the Id property.

statistics
TextDocumentStatistics

Sets the Statistics property.

detectedLanguage
DetectedLanguage

Sets the DetectedLanguage property.

Returns

A new instance of DetectLanguageResult for mocking purposes.

Applies to