You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: xml/System.ComponentModel.Design/DesignSurface.xml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -67,7 +67,7 @@
67
67
|Service|Description|
68
68
|-------------|-----------------|
69
69
|<xref:System.ComponentModel.Design.IComponentChangeService>|Raises events as changes are made to components.|
70
-
|<xref:System.ComponentModel.Design.IDesignerHost>|Controls access to types, services, and transactions. Master interface for designers.|
70
+
|<xref:System.ComponentModel.Design.IDesignerHost>|Controls access to types, services, and transactions. Primary interface for designers.|
71
71
|<xref:System.ComponentModel.IContainer>|Owns the set of components that are being designed. Each designer has an <xref:System.ComponentModel.IContainer> that owns the components.|
72
72
|<xref:System.ComponentModel.Design.IServiceContainer>|Derives from <xref:System.IServiceProvider> and provides a way to add and remove services from the designer.|
Copy file name to clipboardExpand all lines: xml/System.ComponentModel/INestedContainer.xml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -47,7 +47,7 @@
47
47
## Remarks
48
48
The <xref:System.ComponentModel.INestedContainer> interface adds the concept of an owning component to the <xref:System.ComponentModel.IContainer> interface. A nested container is an object that logically, but not necessarily visually, contains zero or more child components and is owned by some parent component. For visual containment, the owning component is often another container.
49
49
50
-
Nested containers allow sections of a control to be designable, without requiring an explicit serialized member variable or a custom serializer for each subcontrol. Instead, the form designer maintains one master container of components. Each component's site may have a nested container that provides a place to put extra components. When a component is sited in a nested container, the name it receives is a combination of its given name and its owning component's name. Additionally, components added to a nested container have full access to the services of the parent container, and the nested container provides the same behavior of the parent with respect to adding new components. The nested container will create the designer for each component it contains, thereby enabling design-time support. Because standard code serializers do not look at nested containers, these components are only serialized if a path to them can be obtained by walking the components in the primary container.
50
+
Nested containers allow sections of a control to be designable, without requiring an explicit serialized member variable or a custom serializer for each subcontrol. Instead, the form designer maintains one primary container of components. Each component's site may have a nested container that provides a place to put extra components. When a component is sited in a nested container, the name it receives is a combination of its given name and its owning component's name. Additionally, components added to a nested container have full access to the services of the parent container, and the nested container provides the same behavior of the parent with respect to adding new components. The nested container will create the designer for each component it contains, thereby enabling design-time support. Because standard code serializers do not look at nested containers, these components are only serialized if a path to them can be obtained by walking the components in the primary container.
51
51
52
52
Nested containers can be found by querying a component's site for services of type <xref:System.ComponentModel.INestedContainer>.
Copy file name to clipboardExpand all lines: xml/System.Data.Common/DataAdapter.xml
+7-9Lines changed: 7 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -1214,7 +1214,7 @@ If a unique clustered index is defined on a column or columns in a SQL Server ta
1214
1214
<formattype="text/markdown"><![CDATA[
1215
1215
1216
1216
## Remarks
1217
-
The <xref:System.Data.Common.DataAdapter.TableMappings%2A> property provides the master mapping between the returned records and the <xref:System.Data.DataSet>.
1217
+
The <xref:System.Data.Common.DataAdapter.TableMappings%2A> property provides the primary mapping between the returned records and the <xref:System.Data.DataSet>.
1218
1218
1219
1219
1220
1220
@@ -1592,15 +1592,15 @@ If a unique clustered index is defined on a column or columns in a SQL Server ta
<summary>Indicates how a source table is mapped to a dataset table.</summary>
1596
-
<value>A collection that provides the master mapping between the returned records and the <seecref="T:System.Data.DataSet" />. The default value is an empty collection.</value>
1595
+
<summary>Gets a collection that indicates how a source table is mapped to a dataset table.</summary>
1596
+
<value>A collection that provides the primary mapping between the returned records and the <seecref="T:System.Data.DataSet" />. The default value is an empty collection.</value>
1597
1597
<remarks>
1598
1598
<formattype="text/markdown"><![CDATA[
1599
1599
1600
1600
## Remarks
1601
1601
This member is an explicit interface member implementation. It can be used only when the <xref:System.Data.Common.DataAdapter> instance is cast to an <xref:System.Data.IDataAdapter> interface.
1602
1602
1603
-
Fore more information, see <xref:System.Data.IDataAdapter.TableMappings%2A>.
1603
+
For more information, see <xref:System.Data.IDataAdapter.TableMappings%2A>.
1604
1604
1605
1605
]]></format>
1606
1606
</remarks>
@@ -1649,15 +1649,13 @@ If a unique clustered index is defined on a column or columns in a SQL Server ta
<summary>Gets a collection that provides the master mapping between a source table and a <seecref="T:System.Data.DataTable" />.</summary>
1653
-
<value>A collection that provides the master mapping between the returned records and the <seecref="T:System.Data.DataSet" />. The default value is an empty collection.</value>
1652
+
<summary>Gets a collection that provides the primary mapping between a source table and a <seecref="T:System.Data.DataTable" />.</summary>
1653
+
<value>A collection that provides the primary mapping between the returned records and the <seecref="T:System.Data.DataSet" />. The default value is an empty collection.</value>
1654
1654
<remarks>
1655
1655
<formattype="text/markdown"><.
60
-
61
-
59
+
A <xref:System.Data.Common.DataTableMapping> provides a primary mapping between the data returned from a query against a data source, and a <xref:System.Data.DataTable>. The <xref:System.Data.Common.DataTableMapping> name can be passed in place of the <xref:System.Data.DataTable> name to the `Fill` method of the **DataAdapter**. For more information, see [DataAdapter DataTable and DataColumn Mappings](/dotnet/framework/data/adonet/dataadapter-datatable-and-datacolumn-mappings).
62
60
63
61
## Examples
64
62
The following example creates a <xref:System.Data.Common.DataTableMapping> object and adds it to a <xref:System.Data.Common.DataTableMappingCollection>. It then informs the user that the mapping was added to the collection and displays the parent mapping.
<summary>This function must be implemented by the corresponding Key Store providers. This function should use an asymmetric key identified by a key path and verify the masterkey metadata consisting of (masterKeyPath, allowEnclaveComputations, providerName).</summary>
185
+
<summary>This function must be implemented by the corresponding Key Store providers. This function should use an asymmetric key identified by a key path and verify the master key metadata consisting of (masterKeyPath, allowEnclaveComputations, providerName).</summary>
186
186
<returns>A Boolean that indicates if the master key metadata can be verified based on the provided signature.</returns>
<summary>This function must be implemented by the corresponding Key Store providers. This function should use an asymmetric key identified by a key path and sign the masterkey metadata consisting of (masterKeyPath, allowEnclaveComputations, providerName).</summary>
185
+
<summary>This function must be implemented by the corresponding Key Store providers. This function should use an asymmetric key identified by a key path and sign the master key metadata consisting of (masterKeyPath, allowEnclaveComputations, providerName).</summary>
186
186
<returns>A Boolean that indicates if the master key metadata can be verified based on the provided signature.</returns>
The <xref:System.Data.IDataAdapter.TableMappings%2A> property provides the master mapping between the returned records and the <xref:System.Data.DataSet>.
338
+
The <xref:System.Data.IDataAdapter.TableMappings%2A> property provides the primary mapping between the returned records and the <xref:System.Data.DataSet>.
<summary>Indicates how a source table is mapped to a dataset table.</summary>
418
-
<value>A collection that provides the master mapping between the returned records and the <seecref="T:System.Data.DataSet" />. The default value is an empty collection.</value>
417
+
<summary>Gets a collection that indicates how a source table is mapped to a dataset table.</summary>
418
+
<value>A collection that provides the primary mapping between the returned records and the <seecref="T:System.Data.DataSet" />. The default value is an empty collection.</value>
Copy file name to clipboardExpand all lines: xml/System.Diagnostics.Tracing/EventCounter.xml
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -64,7 +64,7 @@
64
64
65
65
## Remarks
66
66
67
-
For an example of how to use the <xref:System.Diagnostics.Tracing.EventCounter> class, see [Introduction Tutorial: How to measure performance for very frequent events using EventCounters](https://github.com/dotnet/runtime/blob/master/src/libraries/System.Diagnostics.Tracing/documentation/EventCounterTutorial.md).
67
+
For an example of how to use the <xref:System.Diagnostics.Tracing.EventCounter> class, see [Introduction Tutorial: How to measure performance for very frequent events using EventCounters](https://github.com/dotnet/runtime/blob/main/src/libraries/System.Diagnostics.Tracing/documentation/EventCounterTutorial.md).
68
68
69
69
]]></format>
70
70
</remarks>
@@ -211,7 +211,7 @@ After being disposed, this counter will stop reporting values. If an <xref:Syste
211
211
<formattype="text/markdown"><.
214
+
For an example of how to use the <xref:System.Diagnostics.Tracing.EventCounter.WriteMetric(System.Single)> method, see [Introduction Tutorial: How to measure performance for very frequent events using EventCounters](https://github.com/dotnet/runtime/blob/main/src/libraries/System.Diagnostics.Tracing/documentation/EventCounterTutorial.md).
215
215
216
216
]]></format>
217
217
</remarks>
@@ -257,7 +257,7 @@ After being disposed, this counter will stop reporting values. If an <xref:Syste
257
257
<formattype="text/markdown">< topic.
260
+
For an example of how to use the <xref:System.Diagnostics.Tracing.EventCounter.WriteMetric(System.Single)> method, see the [Introduction Tutorial: How to measure performance for very frequent events using EventCounters](https://github.com/dotnet/runtime/blob/main/src/libraries/System.Diagnostics.Tracing/documentation/EventCounterTutorial.md) topic.
Copy file name to clipboardExpand all lines: xml/System.Diagnostics/Activity.xml
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -661,7 +661,7 @@ Normally if the <xref:System.Diagnostics.Activity.ParentId> is defined, its form
661
661
662
662
## Remarks
663
663
664
-
An ID has a hierarchical structure: `root-id.id1_id2.id3_`. The ID is generated when <xref:System.Diagnostics.Activity.Start> is called by appending a suffix to the `Activity.Parent.Id` or the <xref:System.Diagnostics.Activity.ParentId>. An <xref:System.Diagnostics.Activity> has no ID until it starts. For more information, see [Id Format](https://github.com/dotnet/runtime/blob/master/src/libraries/System.Diagnostics.DiagnosticSource/src/ActivityUserGuide.md#id-format).
664
+
An ID has a hierarchical structure: `root-id.id1_id2.id3_`. The ID is generated when <xref:System.Diagnostics.Activity.Start> is called by appending a suffix to the `Activity.Parent.Id` or the <xref:System.Diagnostics.Activity.ParentId>. An <xref:System.Diagnostics.Activity> has no ID until it starts. For more information, see [Id Format](https://github.com/dotnet/runtime/blob/main/src/libraries/System.Diagnostics.DiagnosticSource/src/ActivityUserGuide.md#id-format).
665
665
666
666
]]></format>
667
667
</remarks>
@@ -858,7 +858,7 @@ An operation name is the *coarsest* name that is useful for grouping/filtering.
858
858
859
859
If the parent for this <xref:System.Diagnostics.Activity> comes from outside the process, the <xref:System.Diagnostics.Activity> does not have a parent but *may* have a parent ID (which was deserialized from the parent).
860
860
861
-
This property value can be `null` if this is a root <xref:System.Diagnostics.Activity> (that is, it has no <xref:System.Diagnostics.Activity.Parent>). For more information, see [ID format](https://github.com/dotnet/runtime/blob/master/src/libraries/System.Diagnostics.DiagnosticSource/src/ActivityUserGuide.md#id-format).
861
+
This property value can be `null` if this is a root <xref:System.Diagnostics.Activity> (that is, it has no <xref:System.Diagnostics.Activity.Parent>). For more information, see [ID format](https://github.com/dotnet/runtime/blob/main/src/libraries/System.Diagnostics.DiagnosticSource/src/ActivityUserGuide.md#id-format).
862
862
863
863
]]></format>
864
864
</remarks>
@@ -948,7 +948,7 @@ If the <xref:System.Diagnostics.Activity.ParentId?displayProperty=nameWithType>
948
948
949
949
## Remarks
950
950
951
-
The root ID is a substring from the <xref:System.Diagnostics.Activity.Id> or the <xref:System.Diagnostics.Activity.ParentId>) between '|' (or the beginning) and the first `.`. Filtering by root ID allows you to find all activities involved in operation processing. For more information, see [ID Format](https://github.com/dotnet/runtime/blob/master/src/libraries/System.Diagnostics.DiagnosticSource/src/ActivityUserGuide.md#id-format).
951
+
The root ID is a substring from the <xref:System.Diagnostics.Activity.Id> or the <xref:System.Diagnostics.Activity.ParentId>) between '|' (or the beginning) and the first `.`. Filtering by root ID allows you to find all activities involved in operation processing. For more information, see [ID Format](https://github.com/dotnet/runtime/blob/main/src/libraries/System.Diagnostics.DiagnosticSource/src/ActivityUserGuide.md#id-format).
Copy file name to clipboardExpand all lines: xml/System.Diagnostics/DiagnosticListener.xml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@
37
37
38
38
`DiagnosticListener` is a NotificationSource, which means the returned result can be used to log notifications, but it also has a <xref:System.Diagnostics.DiagnosticListener.Subscribe%2A> method so notifications can be forwarded arbitrarily. Thus, its job is to forward things from the producer to all the listeners (multi-casting). Generally, you should not be making your own <xref:System.Diagnostics.DiagnosticListener> but use the default, so that notifications are as public as possible.
39
39
40
-
For more information on the <xref:System.Diagnostics.DiagnosticSource> and <xref:System.Diagnostics.DiagnosticListener> classes, see [DiagnosticSource User's Guide](https://github.com/dotnet/runtime/blob/master/src/libraries/System.Diagnostics.DiagnosticSource/src/DiagnosticSourceUsersGuide.md).
40
+
For more information on the <xref:System.Diagnostics.DiagnosticSource> and <xref:System.Diagnostics.DiagnosticListener> classes, see [DiagnosticSource User's Guide](https://github.com/dotnet/runtime/blob/main/src/libraries/System.Diagnostics.DiagnosticSource/src/DiagnosticSourceUsersGuide.md).
0 commit comments