-
Notifications
You must be signed in to change notification settings - Fork 335
Expand file tree
/
Copy pathSqlClientApp.xml
More file actions
141 lines (141 loc) · 3.67 KB
/
Copy pathSqlClientApp.xml
File metadata and controls
141 lines (141 loc) · 3.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<docs>
<members name="SqlClientApp">
<SqlClientApp>
<summary>
Specifies the known application identifiers that Microsoft.Data.SqlClient reports for user agent telemetry.
</summary>
<remarks>
<para>
Production applications that meet the bar are welcome to reserve an identifier here.
</para>
<para>
Identifier reservations are as follows:
</para>
<list type="bullet">
<item>
<description>0x0001-0x7FFF: Microsoft-defined large-scale applications.</description>
</item>
<item>
<description>0x8000-0xBFFF: Reserved for small-scale use.</description>
</item>
<item>
<description>0xC000-0xFFFF: Public and developer use.</description>
</item>
</list>
<para>
An unregistered identifier may still be reported by casting a value to this type. Identifiers are limited to
the 16-bit space the protocol allows, so a value outside 0x0000 to 0xFFFF is rejected when it is assigned to
<see cref="P:Microsoft.Data.SqlClient.SqlConnection.SqlClientAppId" />.
</para>
</remarks>
</SqlClientApp>
<Unknown>
<summary>
No application identity is reported. This is the default.
</summary>
<value>
0
</value>
</Unknown>
<EntityFramework>
<summary>
The Microsoft Entity Framework Core SQL Server provider.
</summary>
<value>
1
</value>
</EntityFramework>
<SemanticKernel>
<summary>
Microsoft Semantic Kernel.
</summary>
<value>
2
</value>
</SemanticKernel>
<ManagementStudio>
<summary>
Microsoft SQL Server Management Studio.
</summary>
<value>
3
</value>
</ManagementStudio>
<SqlManagementObjects>
<summary>
Microsoft SQL Server Management Objects.
</summary>
<value>
4
</value>
</SqlManagementObjects>
<DataTierApplicationFramework>
<summary>
Microsoft SQL Server Data-Tier Application Framework.
</summary>
<value>
5
</value>
</DataTierApplicationFramework>
<SqlToolsService>
<summary>
Microsoft SQL Tools Service.
</summary>
<value>
6
</value>
</SqlToolsService>
<AspNetCoreDistributedSqlServerCache>
<summary>
Microsoft ASP.NET Core distributed SQL Server cache.
</summary>
<value>
7
</value>
</AspNetCoreDistributedSqlServerCache>
<EntityFramework6>
<summary>
Microsoft Entity Framework 6 SQL Server provider.
</summary>
<value>
8
</value>
</EntityFramework6>
<AzureFunctionsSqlExtension>
<summary>
Microsoft Azure Functions SQL extension.
</summary>
<value>
9
</value>
</AzureFunctionsSqlExtension>
<OrleansAdoNet>
<summary>
Microsoft Orleans ADO.NET providers.
</summary>
<value>
10
</value>
</OrleansAdoNet>
<DurableTaskSqlServer>
<summary>
Microsoft Durable Task SQL Server provider.
</summary>
<value>
11
</value>
</DurableTaskSqlServer>
<SqlPackage>
<summary>
The <c>sqlpackage</c> command-line tool.
</summary>
<value>
12
</value>
<remarks>
<c>sqlpackage</c> is built on the Data-Tier Application Framework, but reports its own identifier so that
command-line use can be told apart from other callers of that framework.
</remarks>
</SqlPackage>
</members>
</docs>