Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 87aac70

Browse filesBrowse files
authored
Remove unnecessary mentions of C++ (#11377)
1 parent 60cd453 commit 87aac70
Copy full SHA for 87aac70

File tree

Expand file treeCollapse file tree

103 files changed

+3785
-3935
lines changed
Filter options

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Dismiss banner
Expand file treeCollapse file tree

103 files changed

+3785
-3935
lines changed

‎xml/System.AddIn.Hosting/AddInToken.xml

Copy file name to clipboardExpand all lines: xml/System.AddIn.Hosting/AddInToken.xml
+229-233Lines changed: 229 additions & 233 deletions
Large diffs are not rendered by default.

‎xml/System.AddIn.Hosting/QualificationDataItem.xml

Copy file name to clipboardExpand all lines: xml/System.AddIn.Hosting/QualificationDataItem.xml
+52-54Lines changed: 52 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -23,23 +23,21 @@
2323
<Docs>
2424
<summary>Represents information supplied by the developer of a pipeline segment, for use by the host.</summary>
2525
<remarks>
26-
<format type="text/markdown"><![CDATA[
27-
28-
## Remarks
29-
Each item of qualification data consists of a name/value pair that was applied to a pipeline segment by using the <xref:System.AddIn.Pipeline.QualificationDataAttribute> attribute, to provide information that qualifies the use of the segment (for example, the recommended isolation level for the segment). The <xref:System.AddIn.Hosting.QualificationDataItem> structure contains one name/value pair and the type of pipeline segment it was applied to.
30-
31-
Use the <xref:System.AddIn.Hosting.AddInToken.QualificationData%2A?displayProperty=nameWithType> property to get a nested set of dictionaries that contains <xref:System.AddIn.Hosting.QualificationDataItem> structures for the pipeline segments associated with an <xref:System.AddIn.Hosting.AddInToken>.
32-
33-
Alternatively, use the <xref:System.AddIn.Hosting.AddInToken.GetEnumerator%2A?displayProperty=nameWithType> method to get an enumerator for the <xref:System.AddIn.Hosting.QualificationDataItem> structures of the pipeline segments associated with a token, or simply use a `foreach` statement (`For Each` in Visual Basic, `for each` in Visual C++) to treat the token as if it were a collection of <xref:System.AddIn.Hosting.QualificationDataItem> structures.
34-
35-
36-
37-
## Examples
38-
The following example lists the qualification data for the pipeline segments associated with each <xref:System.AddIn.Hosting.AddInToken> in a collection of tokens.
39-
26+
<format type="text/markdown"><![CDATA[
27+
28+
## Remarks
29+
Each item of qualification data consists of a name/value pair that was applied to a pipeline segment by using the <xref:System.AddIn.Pipeline.QualificationDataAttribute> attribute, to provide information that qualifies the use of the segment (for example, the recommended isolation level for the segment). The <xref:System.AddIn.Hosting.QualificationDataItem> structure contains one name/value pair and the type of pipeline segment it was applied to.
30+
31+
Use the <xref:System.AddIn.Hosting.AddInToken.QualificationData%2A?displayProperty=nameWithType> property to get a nested set of dictionaries that contains <xref:System.AddIn.Hosting.QualificationDataItem> structures for the pipeline segments associated with an <xref:System.AddIn.Hosting.AddInToken>.
32+
33+
Alternatively, use the <xref:System.AddIn.Hosting.AddInToken.GetEnumerator%2A?displayProperty=nameWithType> method to get an enumerator for the <xref:System.AddIn.Hosting.QualificationDataItem> structures of the pipeline segments associated with a token, or simply use a `foreach` statement (`For Each` in Visual Basic) to treat the token as if it were a collection of <xref:System.AddIn.Hosting.QualificationDataItem> structures.
34+
35+
## Examples
36+
The following example lists the qualification data for the pipeline segments associated with each <xref:System.AddIn.Hosting.AddInToken> in a collection of tokens.
37+
4038
:::code language="csharp" source="~/snippets/csharp/System.AddIn.Hosting/AddInController/Overview/P3Host.cs" id="Snippet12":::
41-
:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR/addinP3Host/vb/p3host.vb" id="Snippet12":::
42-
39+
:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR/addinP3Host/vb/p3host.vb" id="Snippet12":::
40+
4341
]]></format>
4442
</remarks>
4543
</Docs>
@@ -120,19 +118,19 @@
120118
<summary>Gets the name of the qualification data item.</summary>
121119
<value>The name of the qualification data item.</value>
122120
<remarks>
123-
<format type="text/markdown"><![CDATA[
124-
125-
## Remarks
126-
Each item of qualification data consists of a name/value pair that was applied to a pipeline segment by using the <xref:System.AddIn.Pipeline.QualificationDataAttribute> attribute, to provide information to consumers of the add-in. The <xref:System.AddIn.Hosting.QualificationDataItem.Name%2A> property gets the name. Use the <xref:System.AddIn.Hosting.QualificationDataItem.Value%2A> property to get the value.
127-
128-
129-
130-
## Examples
131-
The following example lists the qualification data for the pipeline segments associated with each <xref:System.AddIn.Hosting.AddInToken> in a collection of tokens. The <xref:System.AddIn.Hosting.QualificationDataItem.Name%2A> property is used to display the name of each item.
132-
121+
<format type="text/markdown"><![CDATA[
122+
123+
## Remarks
124+
Each item of qualification data consists of a name/value pair that was applied to a pipeline segment by using the <xref:System.AddIn.Pipeline.QualificationDataAttribute> attribute, to provide information to consumers of the add-in. The <xref:System.AddIn.Hosting.QualificationDataItem.Name%2A> property gets the name. Use the <xref:System.AddIn.Hosting.QualificationDataItem.Value%2A> property to get the value.
125+
126+
127+
128+
## Examples
129+
The following example lists the qualification data for the pipeline segments associated with each <xref:System.AddIn.Hosting.AddInToken> in a collection of tokens. The <xref:System.AddIn.Hosting.QualificationDataItem.Name%2A> property is used to display the name of each item.
130+
133131
:::code language="csharp" source="~/snippets/csharp/System.AddIn.Hosting/AddInController/Overview/P3Host.cs" id="Snippet12":::
134-
:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR/addinP3Host/vb/p3host.vb" id="Snippet12":::
135-
132+
:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR/addinP3Host/vb/p3host.vb" id="Snippet12":::
133+
136134
]]></format>
137135
</remarks>
138136
</Docs>
@@ -221,22 +219,22 @@
221219
<summary>Gets a value that identifies the pipeline segment the qualification data item was applied to.</summary>
222220
<value>The kind of pipeline segment the data item was applied to.</value>
223221
<remarks>
224-
<format type="text/markdown"><![CDATA[
225-
226-
## Remarks
227-
When you enumerate qualification data, use this property to identify the qualification data that belongs to a particular segment of the pipeline.
228-
222+
<format type="text/markdown"><![CDATA[
223+
224+
## Remarks
225+
When you enumerate qualification data, use this property to identify the qualification data that belongs to a particular segment of the pipeline.
226+
229227
> [!NOTE]
230-
> The add-in model does not use qualification data that is applied to the host view of the add-in. As a result, when you enumerate qualification data you will not find any items whose <xref:System.AddIn.Hosting.QualificationDataItem.Segment%2A> property is <xref:System.AddIn.Hosting.AddInSegmentType.HostViewOfAddIn>.
231-
232-
233-
234-
## Examples
235-
The following example lists the qualification data for the pipeline segments associated with each <xref:System.AddIn.Hosting.AddInToken> in a collection of tokens. The <xref:System.AddIn.Hosting.QualificationDataItem.Segment%2A> property is used to display the kind of segment.
236-
228+
> The add-in model does not use qualification data that is applied to the host view of the add-in. As a result, when you enumerate qualification data you will not find any items whose <xref:System.AddIn.Hosting.QualificationDataItem.Segment%2A> property is <xref:System.AddIn.Hosting.AddInSegmentType.HostViewOfAddIn>.
229+
230+
231+
232+
## Examples
233+
The following example lists the qualification data for the pipeline segments associated with each <xref:System.AddIn.Hosting.AddInToken> in a collection of tokens. The <xref:System.AddIn.Hosting.QualificationDataItem.Segment%2A> property is used to display the kind of segment.
234+
237235
:::code language="csharp" source="~/snippets/csharp/System.AddIn.Hosting/AddInController/Overview/P3Host.cs" id="Snippet12":::
238-
:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR/addinP3Host/vb/p3host.vb" id="Snippet12":::
239-
236+
:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR/addinP3Host/vb/p3host.vb" id="Snippet12":::
237+
240238
]]></format>
241239
</remarks>
242240
</Docs>
@@ -267,19 +265,19 @@
267265
<summary>Gets the value of the qualification data item.</summary>
268266
<value>The value of the item.</value>
269267
<remarks>
270-
<format type="text/markdown"><![CDATA[
271-
272-
## Remarks
273-
Each item of qualification data consists of a name/value pair that was applied to a pipeline segment by using the <xref:System.AddIn.Pipeline.QualificationDataAttribute> attribute, to provide information to consumers of the add-in. The <xref:System.AddIn.Hosting.QualificationDataItem.Value%2A> property gets the value. Use the <xref:System.AddIn.Hosting.QualificationDataItem.Name%2A> property to get the name.
274-
275-
276-
277-
## Examples
278-
The following example lists the qualification data for the pipeline segments associated with each <xref:System.AddIn.Hosting.AddInToken> in a collection of tokens. The <xref:System.AddIn.Hosting.QualificationDataItem.Value%2A> property is used to display the value of the item.
279-
268+
<format type="text/markdown"><![CDATA[
269+
270+
## Remarks
271+
Each item of qualification data consists of a name/value pair that was applied to a pipeline segment by using the <xref:System.AddIn.Pipeline.QualificationDataAttribute> attribute, to provide information to consumers of the add-in. The <xref:System.AddIn.Hosting.QualificationDataItem.Value%2A> property gets the value. Use the <xref:System.AddIn.Hosting.QualificationDataItem.Name%2A> property to get the name.
272+
273+
274+
275+
## Examples
276+
The following example lists the qualification data for the pipeline segments associated with each <xref:System.AddIn.Hosting.AddInToken> in a collection of tokens. The <xref:System.AddIn.Hosting.QualificationDataItem.Value%2A> property is used to display the value of the item.
277+
280278
:::code language="csharp" source="~/snippets/csharp/System.AddIn.Hosting/AddInController/Overview/P3Host.cs" id="Snippet12":::
281-
:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR/addinP3Host/vb/p3host.vb" id="Snippet12":::
282-
279+
:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_CLR/addinP3Host/vb/p3host.vb" id="Snippet12":::
280+
283281
]]></format>
284282
</remarks>
285283
</Docs>

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.