File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change 4
4
namespace Microsoft . Azure . Devices
5
5
{
6
6
/// <summary>
7
- /// Holds the API version numbers required in data-plane calls to the service
7
+ /// Holds the API version numbers required in data-plane calls to the service for <see cref="RegistryManager"/>,
8
+ /// <see cref="ServiceClient"/>, and <see cref="JobClient"/>.
8
9
/// </summary>
9
10
internal class ClientApiVersionHelper
10
11
{
11
12
private const string ApiVersionQueryPrefix = "api-version=" ;
12
13
private const string ApiVersionDefault = "2021-04-12" ;
13
14
14
15
/// <summary>
15
- /// The default API version to use for all data-plane service calls
16
+ /// The default API version query string parameter to use for all data-plane service calls in <see cref="RegistryManager"/>,
17
+ /// <see cref="ServiceClient"/>, and <see cref="JobClient"/>.
16
18
/// </summary>
17
19
public const string ApiVersionQueryString = ApiVersionQueryPrefix + ApiVersionDefault ;
20
+
21
+ // For DigitalTwinClient which has an autorest-generated protocol layer, the API version is specified at generation time.
22
+ // To update that API version, follow the instructions at ./DigitalTwin/readme.md.
18
23
}
19
24
}
You can’t perform that action at this time.
0 commit comments