-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Text Analytics] Analyze design update (#18406)
- Loading branch information
Showing
261 changed files
with
9,221 additions
and
16,063 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
188 changes: 68 additions & 120 deletions
188
sdk/textanalytics/Azure.AI.TextAnalytics/api/Azure.AI.TextAnalytics.netstandard2.0.cs
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeBatchActionsOptions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
|
||
namespace Azure.AI.TextAnalytics | ||
{ | ||
/// <summary> | ||
/// Options that allow callers to specify details about how the operation | ||
/// is run and what information is returned from it by the service. | ||
/// <para>For example whether to include statistics.</para> | ||
/// </summary> | ||
public class AnalyzeBatchActionsOptions | ||
{ | ||
/// <summary> | ||
/// Gets or sets a value that, if set to true, indicates that the service | ||
/// should return document and document batch statistics with the results | ||
/// of the operation. | ||
/// </summary> | ||
public bool IncludeStatistics { get; set; } | ||
} | ||
} |
Oops, something went wrong.