Skip to content

Commit f90729c

Browse files
authored
remove locale from URL, shorten heading, fix capitalization
1 parent c109416 commit f90729c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/search/search-dotnet-sdk-migration-version-10.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Version 10 of the Azure Search .NET SDK targets the latest generally available v
3636
- [urlDecode](https://docs.microsoft.com/azure/search/search-indexer-field-mappings#urldecode-function)
3737
* On certain occasions, errors and warnings that show up in [indexer execution status](https://docs.microsoft.com/rest/api/searchservice/get-indexer-status) can have additional details that help in debugging. `IndexerExecutionResult` has been updated to reflect this behavior.
3838
* Individual skills defined within a [skillset](cognitive-search-defining-skillset.md) can optionally be identified by specifying a `name` property.
39-
* `ServiceLimits` shows limits for [complex types](https://docs.microsoft.com/en-us/azure/search/search-howto-complex-data-types) and `IndexerExecutionInfo` shows pertinent indexer limits/quotas.
39+
* `ServiceLimits` shows limits for [complex types](https://docs.microsoft.com/azure/search/search-howto-complex-data-types) and `IndexerExecutionInfo` shows pertinent indexer limits/quotas.
4040

4141
<a name="UpgradeSteps"></a>
4242

@@ -59,7 +59,7 @@ There are several breaking changes in version 10 that may require code changes i
5959
> [!NOTE]
6060
> The list of changes below is not exhaustive. Some changes will likely not result in build errors, but are technically breaking since they break binary compatibility with assemblies that depend on earlier versions of the Azure Search .NET SDK assemblies. Significant changes that fall under this category are also listed along with recommendations. Please rebuild your application when upgrading to version 10 to avoid any binary compatibility issues.
6161
62-
### Custom Web API Skill Definition
62+
### Custom Web API skill definition
6363

6464
The definition of the [Custom Web API skill](cognitive-search-custom-skill-web-api.md) was incorrectly specified in version 9 and older.
6565

@@ -138,9 +138,9 @@ var skillset = new Skillset()
138138

139139
If you choose to identify skills by a custom name, make sure to update all instances of your clients to version 10 of the SDK first. Otherwise, there is a possibility that a client using an older version of the SDK could `null` out the `Name` property of a skill, causing the client to fall back on the default naming scheme.
140140

141-
## Additional details for errors and warnings as part of indexer execution status
141+
## Details about errors and warnings
142142

143-
`ItemError` and `ItemWarning` models that encapsulate details of errors and warnings (respectively) that occur during an indexer execution have been modified to include 3 new properties, with the objective to aid in debugging the indexer. These properties are:
143+
`ItemError` and `ItemWarning` models that encapsulate details of errors and warnings (respectively) that occur during an indexer execution have been modified to include three new properties with the objective to aid in debugging the indexer. These properties are:
144144

145145
- `Name`: The name of the source at which the error originated. For example, it could refer to a particular skill in the attached skillset.
146146
- `Details`: Additional verbose details about the error or warning.

0 commit comments

Comments
 (0)