Skip to content

Commit 4530175

Browse files
authored
Add table headers for accessibility (dotnet#10778)
1 parent d09267e commit 4530175

File tree

31 files changed

+6179
-6000
lines changed

31 files changed

+6179
-6000
lines changed

xml/System.AddIn.Hosting/AddInProcess.xml

Lines changed: 69 additions & 69 deletions
Original file line numberDiff line numberDiff line change
@@ -17,21 +17,21 @@
1717
<Docs>
1818
<summary>Provides an external process for running add-ins out-of-process from the host application.</summary>
1919
<remarks>
20-
<format type="text/markdown"><![CDATA[
21-
22-
## Remarks
23-
To activate an add-in in an external process, pass an <xref:System.AddIn.Hosting.AddInProcess> object to the appropriate <xref:System.AddIn.Hosting.AddInToken.Activate%60%601%28System.AddIn.Hosting.AddInProcess%2CSystem.Security.PermissionSet%29?displayProperty=nameWithType> method overload.
24-
25-
The executable that runs the add-in is obtained from one of two files installed with the .NET Framework under the Windows directory. By default, the executable that matches the bits-per-word of the host application is used. If the host is a 64-bit process, AddInProcess.exe is run; otherwise, AddInProcess32.exe is run. To specify the way the executable is selected, use the <xref:System.AddIn.Hosting.AddInProcess.%23ctor%28System.AddIn.Hosting.Platform%29> constructor to create the <xref:System.AddIn.Hosting.AddInProcess> object.
26-
27-
28-
29-
## Examples
30-
The following example activates an add-in in an external process.
31-
20+
<format type="text/markdown"><![CDATA[
21+
22+
## Remarks
23+
To activate an add-in in an external process, pass an <xref:System.AddIn.Hosting.AddInProcess> object to the appropriate <xref:System.AddIn.Hosting.AddInToken.Activate%60%601%28System.AddIn.Hosting.AddInProcess%2CSystem.Security.PermissionSet%29?displayProperty=nameWithType> method overload.
24+
25+
The executable that runs the add-in is obtained from one of two files installed with the .NET Framework under the Windows directory. By default, the executable that matches the bits-per-word of the host application is used. If the host is a 64-bit process, AddInProcess.exe is run; otherwise, AddInProcess32.exe is run. To specify the way the executable is selected, use the <xref:System.AddIn.Hosting.AddInProcess.%23ctor%28System.AddIn.Hosting.Platform%29> constructor to create the <xref:System.AddIn.Hosting.AddInProcess> object.
26+
27+
28+
29+
## Examples
30+
The following example activates an add-in in an external process.
31+
3232
:::code language="csharp" source="~/snippets/csharp/System.AddIn.Hosting/AddInController/Overview/P3Host.cs" id="Snippet10":::
33-
:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR/addinP3Host/vb/p3host.vb" id="Snippet10":::
34-
33+
:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR/addinP3Host/vb/p3host.vb" id="Snippet10":::
34+
3535
]]></format>
3636
</remarks>
3737
<related type="Article" href="/previous-versions/dotnet/netframework-4.0/bb384200(v=vs.100)">Add-Ins and Extensibility</related>
@@ -72,11 +72,11 @@
7272
<Docs>
7373
<summary>Initializes a new instance of the <see cref="T:System.AddIn.Hosting.AddInProcess" /> class.</summary>
7474
<remarks>
75-
<format type="text/markdown"><![CDATA[
76-
77-
## Remarks
78-
This constructor has the same effect as using the <xref:System.AddIn.Hosting.AddInProcess.%23ctor%28System.AddIn.Hosting.Platform%29> constructor with the <xref:System.AddIn.Hosting.Platform.Host?displayProperty=nameWithType> flag, to specify that the process that runs the add-in will have the same bits-per-word as the host process.
79-
75+
<format type="text/markdown"><![CDATA[
76+
77+
## Remarks
78+
This constructor has the same effect as using the <xref:System.AddIn.Hosting.AddInProcess.%23ctor%28System.AddIn.Hosting.Platform%29> constructor with the <xref:System.AddIn.Hosting.Platform.Host?displayProperty=nameWithType> flag, to specify that the process that runs the add-in will have the same bits-per-word as the host process.
79+
8080
]]></format>
8181
</remarks>
8282
</Docs>
@@ -106,24 +106,24 @@
106106
<param name="platform">A value that specifies the bits-per-word of the process that runs the add-in.</param>
107107
<summary>Initializes a new instance of the <see cref="T:System.AddIn.Hosting.AddInProcess" /> class, specifying the bits-per-word of the process in which the add-in runs.</summary>
108108
<remarks>
109-
<format type="text/markdown"><![CDATA[
110-
111-
## Remarks
112-
The following table shows how `platform` affects the bits-per-word of the process on different operating systems:
113-
114-
||32-bit operating system|64-bit operating system|
115-
|-|------------------------------|------------------------------|
116-
|Host|32-bit|Same as the host process|
117-
|AnyCPU|32-bit|64-bit|
118-
|X86|32-bit|32-bit|
119-
|X64|Exception is thrown|64-bit|
120-
109+
<format type="text/markdown"><![CDATA[
110+
111+
## Remarks
112+
The following table shows how `platform` affects the bits-per-word of the process on different operating systems:
113+
114+
| `platform` | 32-bit operating system | 64-bit operating system |
115+
|------------|-------------------------|--------------------------|
116+
| Host | 32-bit | Same as the host process |
117+
| AnyCPU | 32-bit | 64-bit |
118+
| X86 | 32-bit | 32-bit |
119+
| X64 | Exception is thrown | 64-bit |
120+
121121
]]></format>
122122
</remarks>
123-
<exception cref="T:System.InvalidOperationException">The registry entry for the path to the executable (AddInProcess.exe or AddInProcess32.exe) is missing.
124-
125-
-or-
126-
123+
<exception cref="T:System.InvalidOperationException">The registry entry for the path to the executable (AddInProcess.exe or AddInProcess32.exe) is missing.
124+
125+
-or-
126+
127127
The executable is missing.</exception>
128128
</Docs>
129129
</Member>
@@ -148,22 +148,22 @@
148148
<value>
149149
<see langword="true" /> if the <see cref="T:System.AddIn.Hosting.AddInProcess" /> object corresponds to the current process; otherwise, <see langword="false" />.</value>
150150
<remarks>
151-
<format type="text/markdown"><![CDATA[
152-
153-
## Remarks
154-
If the value of this property is `true`, the add-in is running in-process with the host application. In that case, using the <xref:System.AddIn.Hosting.AddInProcess.Start%2A> or <xref:System.AddIn.Hosting.AddInProcess.Shutdown%2A> method throws an <xref:System.InvalidOperationException>.
155-
151+
<format type="text/markdown"><![CDATA[
152+
153+
## Remarks
154+
If the value of this property is `true`, the add-in is running in-process with the host application. In that case, using the <xref:System.AddIn.Hosting.AddInProcess.Start%2A> or <xref:System.AddIn.Hosting.AddInProcess.Shutdown%2A> method throws an <xref:System.InvalidOperationException>.
155+
156156
> [!NOTE]
157-
> The <xref:System.AddIn.Hosting.AddInEnvironment.Process%2A?displayProperty=nameWithType> property returns an <xref:System.AddIn.Hosting.AddInProcess> object that represents the host application process if the add-in is running in-process.
158-
159-
160-
161-
## Examples
162-
The following example activates an add-in in an external process and uses the <xref:System.AddIn.Hosting.AddInProcess.IsCurrentProcess%2A> property to determine whether the add-in is in the same process as the host application process.
163-
157+
> The <xref:System.AddIn.Hosting.AddInEnvironment.Process%2A?displayProperty=nameWithType> property returns an <xref:System.AddIn.Hosting.AddInProcess> object that represents the host application process if the add-in is running in-process.
158+
159+
160+
161+
## Examples
162+
The following example activates an add-in in an external process and uses the <xref:System.AddIn.Hosting.AddInProcess.IsCurrentProcess%2A> property to determine whether the add-in is in the same process as the host application process.
163+
164164
:::code language="csharp" source="~/snippets/csharp/System.AddIn.Hosting/AddInController/Overview/P3Host.cs" id="Snippet10":::
165-
:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR/addinP3Host/vb/p3host.vb" id="Snippet10":::
166-
165+
:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR/addinP3Host/vb/p3host.vb" id="Snippet10":::
166+
167167
]]></format>
168168
</remarks>
169169
</Docs>
@@ -199,11 +199,11 @@
199199
<value>
200200
<see langword="true" /> if the external process should be kept alive; otherwise, <see langword="false" />. The default is <see langword="false" />.</value>
201201
<remarks>
202-
<format type="text/markdown"><![CDATA[
203-
204-
## Remarks
205-
Set this property to `false` to aggressively shut down the external process after the last add-in inside the process has been shut down.
206-
202+
<format type="text/markdown"><![CDATA[
203+
204+
## Remarks
205+
Set this property to `false` to aggressively shut down the external process after the last add-in inside the process has been shut down.
206+
207207
]]></format>
208208
</remarks>
209209
</Docs>
@@ -233,11 +233,11 @@
233233
<summary>Gets the bits-per-word of the process in which the out-of-process add-in is run.</summary>
234234
<value>The bits-per-word of the process that runs the add-in.</value>
235235
<remarks>
236-
<format type="text/markdown"><![CDATA[
237-
238-
## Remarks
239-
The bits-per-word is set when the <xref:System.AddIn.Hosting.AddInProcess> object is initialized, and cannot be changed.
240-
236+
<format type="text/markdown"><![CDATA[
237+
238+
## Remarks
239+
The bits-per-word is set when the <xref:System.AddIn.Hosting.AddInProcess> object is initialized, and cannot be changed.
240+
241241
]]></format>
242242
</remarks>
243243
</Docs>
@@ -262,11 +262,11 @@
262262
<summary>Gets the process ID of the external process.</summary>
263263
<value>The process ID, or -1 if the external process has not started.</value>
264264
<remarks>
265-
<format type="text/markdown"><![CDATA[
266-
267-
## Remarks
268-
Use this property for debugging.
269-
265+
<format type="text/markdown"><![CDATA[
266+
267+
## Remarks
268+
Use this property for debugging.
269+
270270
]]></format>
271271
</remarks>
272272
</Docs>
@@ -374,11 +374,11 @@
374374
<summary>Gets or sets the number of seconds to allow for the process to start.</summary>
375375
<value>The number of seconds to allow for process startup.</value>
376376
<remarks>
377-
<format type="text/markdown"><![CDATA[
378-
379-
## Remarks
380-
The default value is 10 seconds. This property is usually used during debugging, to increase the startup time for the process that runs the out-of-process add-in.
381-
377+
<format type="text/markdown"><![CDATA[
378+
379+
## Remarks
380+
The default value is 10 seconds. This property is usually used during debugging, to increase the startup time for the process that runs the out-of-process add-in.
381+
382382
]]></format>
383383
</remarks>
384384
<exception cref="T:System.InvalidOperationException">The process is already running.</exception>

xml/System.AddIn.Hosting/Platform.xml

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,18 @@
2121
<Docs>
2222
<summary>Specifies the bits-per-word of the process in which an out-of-process add-in is run.</summary>
2323
<remarks>
24-
<format type="text/markdown"><![CDATA[
25-
26-
## Remarks
27-
The following table shows how the enumeration value affects the bits-per-word of the process on different operating systems:
28-
29-
||32-bit operating system|64-bit operating system|
30-
|-|------------------------------|------------------------------|
31-
|Host|32-bit|Same as host process|
32-
|AnyCPU|32-bit|64-bit|
33-
|X86|32-bit|32-bit|
34-
|X64|Exception is thrown|64-bit|
35-
||32-bit|N/A|
36-
24+
<format type="text/markdown"><![CDATA[
25+
26+
The following table shows how the enumeration value affects the bits-per-word of the process on different operating systems:
27+
28+
| Platform | 32-bit operating system | 64-bit operating system |
29+
|----------|-------------------------|-------------------------|
30+
| Host | 32-bit | Same as host process |
31+
| AnyCPU | 32-bit | 64-bit |
32+
| X86 | 32-bit | 32-bit |
33+
| X64 | Exception is thrown | 64-bit |
34+
| | 32-bit | N/A |
35+
3736
]]></format>
3837
</remarks>
3938
</Docs>

xml/System.Buffers.Text/Utf8Formatter.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -765,11 +765,11 @@ If the method fails, iteratively increase the size of the buffer and retry until
765765
766766
Formats supported:
767767
768-
|Format string|Result string|Comments|
769-
|--|--|--|
770-
|c/t/T (default)|[-][d.]hh:mm:ss[.fffffff]|(constant format)|
771-
|G|[-]d:hh:mm:ss.fffffff||(general long)|
772-
|g|[-][d:][h]h:mm:ss[.f[f[f[f[f[f[f]]]]]]|(general short)|
768+
| Format string | Result string | Comments |
769+
|-----------------|----------------------------------------|-------------------|
770+
| c/t/T (default) | [-][d.]hh:mm:ss[.fffffff] | (constant format) |
771+
| G | [-]d:hh:mm:ss.fffffff | (general long) |
772+
| g | [-][d:][h]h:mm:ss[.f[f[f[f[f[f[f]]]]]] | (general short) |
773773
774774
If the method fails, iteratively increase the size of the buffer and retry until it succeeds.
775775

xml/System.Buffers.Text/Utf8Parser.xml

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -130,13 +130,13 @@ The parsing is case insensitive. The format parameter is validated to ensure it
130130
<remarks>
131131
<format type="text/markdown"><![CDATA[
132132
133-
Formats supported:
133+
Formats supported:
134134
135135
|Format string|Example expected format|
136136
|--|--|
137137
|G/g (default)| |
138138
|D/d|122|
139-
|N/n|122|
139+
|N/n|122|
140140
|X/x|7a|
141141
142142
]]></format>
@@ -302,7 +302,7 @@ Formats supported:
302302
303303
|Format string|Example expected format|Comments|
304304
|--|--|--|
305-
|G/g (default)| |
305+
|G/g (default)| |
306306
|F/f|12.45|Fixed point|
307307
|E/e|1.245000e1|Exponential|
308308
@@ -357,7 +357,7 @@ Formats supported:
357357
358358
|Format string|Example expected format|Comments|
359359
|--|--|--|
360-
|G/g (default)| |
360+
|G/g (default)| |
361361
|F/f|12.45|Fixed point|
362362
|E/e|1.245000e1|Exponential|
363363
@@ -470,7 +470,7 @@ Formats supported:
470470
|--|--|
471471
|G/g (default)| |
472472
|D/d|32767|
473-
|N/n|32,767|
473+
|N/n|32,767|
474474
|X/x|7fff|
475475
476476
]]></format>
@@ -526,7 +526,7 @@ Formats supported:
526526
|--|--|
527527
|G/g (default)| |
528528
|D/d|32767|
529-
|N/n|32,767|
529+
|N/n|32,767|
530530
|X/x|7fff|
531531
532532
]]></format>
@@ -582,7 +582,7 @@ Formats supported:
582582
|--|--|
583583
|G/g (default)| |
584584
|D/d|32767|
585-
|N/n|32,767|
585+
|N/n|32,767|
586586
|X/x|7fff|
587587
588588
]]></format>
@@ -638,13 +638,13 @@ Formats supported:
638638
<remarks>
639639
<format type="text/markdown"><![CDATA[
640640
641-
Formats supported:
641+
Formats supported:
642642
643643
|Format string|Example expected format|
644644
|--|--|
645645
|G/g (default)| |
646646
|D/d|122|
647-
|N/n|122|
647+
|N/n|122|
648648
|X/x|7a|
649649
650650
]]></format>
@@ -694,11 +694,11 @@ Formats supported:
694694
<remarks>
695695
<format type="text/markdown"><![CDATA[
696696
697-
Formats supported:
697+
Formats supported:
698698
699699
Format string|Example expected fornmat|Comments|
700700
|--|--|--|
701-
|G/g (default)| |
701+
|G/g (default)| |
702702
|F/f|12.45|Fixed point|
703703
|E/e|1.245000e1|Exponential|
704704
@@ -749,13 +749,13 @@ Format string|Example expected fornmat|Comments|
749749
<remarks>
750750
<format type="text/markdown"><![CDATA[
751751
752-
Formats supported:
752+
Formats supported:
753753
754-
|Format string|Expected format|Comments|
755-
|--|--|--|
756-
|c/t/T (default)|[-][d.]hh:mm:ss[.fffffff]|(constant format)|
757-
|G|[-]d:hh:mm:ss.fffffff||(general long)|
758-
|g|[-][d:][h]h:mm:ss[.f[f[f[f[f[f[f]]]]]]|(general short)|
754+
| Format string | Expected format | Comments |
755+
|-----------------|----------------------------------------|-------------------|
756+
| c/t/T (default) | [-][d.]hh:mm:ss[.fffffff] | (constant format) |
757+
| G | [-]d:hh:mm:ss.fffffff | (general long) |
758+
| g | [-][d:][h]h:mm:ss[.f[f[f[f[f[f[f]]]]]] | (general short) |
759759
760760
]]></format>
761761
</remarks>
@@ -816,7 +816,7 @@ Formats supported:
816816
|--|--|
817817
|G/g (default)| |
818818
|D/d|32767|
819-
|N/n|32,767|
819+
|N/n|32,767|
820820
|X/x|7fff|
821821
822822
]]></format>
@@ -878,7 +878,7 @@ Formats supported:
878878
|--|--|
879879
|G/g (default)| |
880880
|D/d|32767|
881-
|N/n|32,767|
881+
|N/n|32,767|
882882
|X/x|7fff|
883883
884884
]]></format>
@@ -940,7 +940,7 @@ Formats supported:
940940
|--|--|
941941
|G/g (default)| |
942942
|D/d|32767|
943-
|N/n|32,767|
943+
|N/n|32,767|
944944
|X/x|7fff|
945945
946946
]]></format>

0 commit comments

Comments
 (0)