From a7efcad2230a6235ac337bcd5f7622a8d37a39b7 Mon Sep 17 00:00:00 2001
From: Genevieve Warren <24882762+gewarren@users.noreply.github.com>
Date: Fri, 26 Jun 2026 15:43:37 -0700
Subject: [PATCH 1/3] add MemberGroup descriptions
---
xml/System.Data.Common/DbBatch.xml | 5 +++
xml/System.Data.Common/DbCommand.xml | 5 +++
xml/System.Data.Common/DbConnection.xml | 20 +++++++++
xml/System.Data.Common/DbDataRecord.xml | 10 +++++
xml/System.Data.Common/DbDataSource.xml | 5 +++
.../DbProviderFactories.xml | 5 +++
xml/System.Data.Common/DbTransaction.xml | 10 +++++
.../DynamicDependencyAttribute.xml | 5 +++
.../MemberNotNullAttribute.xml | 5 +++
.../MemberNotNullWhenAttribute.xml | 5 +++
.../RequiresAssemblyFilesAttribute.xml | 5 +++
.../StringSyntaxAttribute.xml | 5 +++
xml/System.Diagnostics.Contracts/Contract.xml | 5 +++
xml/System.Diagnostics.Metrics/Counter`1.xml | 5 +++
xml/System.Diagnostics.Metrics/Gauge`1.xml | 5 +++
.../Histogram`1.xml | 5 +++
xml/System.Diagnostics.Metrics/Instrument.xml | 5 +++
.../Instrument`1.xml | 10 +++++
.../Measurement`1.xml | 5 +++
xml/System.Diagnostics.Metrics/Meter.xml | 45 +++++++++++++++++++
.../ObservableInstrument`1.xml | 5 +++
.../UpDownCounter`1.xml | 5 +++
.../EventCounter.xml | 5 +++
.../EventSource.xml | 5 +++
xml/System.Diagnostics/Activity.xml | 15 +++++++
xml/System.Diagnostics/ActivityContext.xml | 10 +++++
xml/System.Diagnostics/ActivityEvent.xml | 5 +++
xml/System.Diagnostics/ActivityLink.xml | 5 +++
xml/System.Diagnostics/ActivitySource.xml | 15 +++++++
xml/System.Diagnostics/ActivitySpanId.xml | 5 +++
.../ActivityTagsCollection.xml | 15 +++++++
xml/System.Diagnostics/ActivityTraceId.xml | 5 +++
.../Debug+AssertInterpolatedStringHandler.xml | 10 +++++
...Debug+WriteIfInterpolatedStringHandler.xml | 10 +++++
xml/System.Diagnostics/DiagnosticListener.xml | 5 +++
.../DiagnosticMethodInfo.xml | 5 +++
xml/System.Diagnostics/DiagnosticSource.xml | 5 +++
xml/System.Diagnostics/Process.xml | 5 +++
xml/System.Diagnostics/Stopwatch.xml | 5 +++
xml/System.Diagnostics/TagList.xml | 10 +++++
.../UnreachableException.xml | 5 +++
.../ActiveDirectorySiteLinkBridge.xml | 5 +++
.../ConfigurationSet.xml | 10 +++++
...ctoryServicesPermissionEntryCollection.xml | 5 +++
.../DirectorySynchronization.xml | 10 +++++
.../DirectoryVirtualListView.xml | 5 +++
.../SchemaNameCollection.xml | 5 +++
xml/System.DirectoryServices/SortOption.xml | 5 +++
.../CustomLineCap.xml | 5 +++
xml/System.Drawing.Drawing2D/GraphicsPath.xml | 5 +++
.../GraphicsPathIterator.xml | 10 +++++
xml/System.Drawing.Drawing2D/Matrix.xml | 5 +++
.../ColorLookupTableEffect.xml | 5 +++
xml/System.Drawing.Imaging.Effects/Effect.xml | 5 +++
.../TintEffect.xml | 5 +++
xml/System.Drawing.Imaging/ColorPalette.xml | 5 +++
.../ImageAttributes.xml | 5 +++
xml/System.Drawing/Bitmap.xml | 5 +++
xml/System.Drawing/CharacterRange.xml | 5 +++
xml/System.Drawing/Color.xml | 5 +++
xml/System.Drawing/Graphics.xml | 20 +++++++++
xml/System.Drawing/Icon.xml | 5 +++
xml/System.Drawing/ImageAnimator.xml | 5 +++
xml/System.Drawing/Point.xml | 5 +++
xml/System.Drawing/PointF.xml | 15 +++++++
xml/System.Drawing/Rectangle.xml | 5 +++
xml/System.Drawing/RectangleF.xml | 10 +++++
xml/System.Drawing/Size.xml | 15 +++++++
xml/System.Drawing/SizeF.xml | 15 +++++++
xml/System.Drawing/SystemIcons.xml | 5 +++
70 files changed, 535 insertions(+)
diff --git a/xml/System.Data.Common/DbBatch.xml b/xml/System.Data.Common/DbBatch.xml
index 982a04eb628..dd525961933 100644
--- a/xml/System.Data.Common/DbBatch.xml
+++ b/xml/System.Data.Common/DbBatch.xml
@@ -575,6 +575,11 @@ The precise semantics of batch execution vary across ADO.NET providers, especial
+
+
+ An asynchronous version of , which executes the batch against its connection, returning a that can be used to access the results.
+
+
diff --git a/xml/System.Data.Common/DbCommand.xml b/xml/System.Data.Common/DbCommand.xml
index ead398c91ab..0a6d368f26b 100644
--- a/xml/System.Data.Common/DbCommand.xml
+++ b/xml/System.Data.Common/DbCommand.xml
@@ -705,6 +705,11 @@
ADO.NET Overview
+
+
+ Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
+
+
diff --git a/xml/System.Data.Common/DbConnection.xml b/xml/System.Data.Common/DbConnection.xml
index dd01f693387..1bd9f5917ec 100644
--- a/xml/System.Data.Common/DbConnection.xml
+++ b/xml/System.Data.Common/DbConnection.xml
@@ -351,6 +351,11 @@
ADO.NET Overview
+
+
+ Asynchronously begins a database transaction.
+
+
@@ -1154,6 +1159,11 @@ This property returns `false` by default; providers that implement ADO.NET Overview
+
+
+ Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
+
+
@@ -1508,6 +1518,16 @@ This property returns `false` by default; providers that implement ADO.NET Overview
+
+
+ This is an asynchronous version of .
+ Providers should override with an appropriate implementation.
+ The can optionally be honored.
+ The default implementation invokes the synchronous call and returns a completed task.
+ The default implementation will return a cancelled task if passed an already cancelled .
+ Exceptions thrown by will be communicated via the returned Task Exception property.
+
+
diff --git a/xml/System.Data.Common/DbDataRecord.xml b/xml/System.Data.Common/DbDataRecord.xml
index 6f1c6a47a8f..882fc488a83 100644
--- a/xml/System.Data.Common/DbDataRecord.xml
+++ b/xml/System.Data.Common/DbDataRecord.xml
@@ -1978,6 +1978,11 @@
ADO.NET Overview
+
+
+ Returns the events for this instance of a component.
+
+
@@ -2095,6 +2100,11 @@
ADO.NET Overview
+
+
+ Returns the properties for this instance of a component.
+
+
diff --git a/xml/System.Data.Common/DbDataSource.xml b/xml/System.Data.Common/DbDataSource.xml
index 8ba244ac62d..6c0bd76d4d5 100644
--- a/xml/System.Data.Common/DbDataSource.xml
+++ b/xml/System.Data.Common/DbDataSource.xml
@@ -303,6 +303,11 @@
+
+
+ Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources asynchronously.
+
+
diff --git a/xml/System.Data.Common/DbProviderFactories.xml b/xml/System.Data.Common/DbProviderFactories.xml
index 9fa987e9d5f..0d3270e1df2 100644
--- a/xml/System.Data.Common/DbProviderFactories.xml
+++ b/xml/System.Data.Common/DbProviderFactories.xml
@@ -329,6 +329,11 @@
To be added.
+
+
+ Registers an instance of under the specified invariant provider name.
+
+
diff --git a/xml/System.Data.Common/DbTransaction.xml b/xml/System.Data.Common/DbTransaction.xml
index a9adf745987..3cb7ff68b79 100644
--- a/xml/System.Data.Common/DbTransaction.xml
+++ b/xml/System.Data.Common/DbTransaction.xml
@@ -619,6 +619,11 @@
The cancellation token was canceled. This exception is stored into the returned task.
+
+
+ When overridden in a derived class, rolls back a transaction from a pending state.
+
+
@@ -699,6 +704,11 @@
To be added.
+
+
+ Asynchronously rolls back a transaction from a pending state.
+
+
diff --git a/xml/System.Diagnostics.CodeAnalysis/DynamicDependencyAttribute.xml b/xml/System.Diagnostics.CodeAnalysis/DynamicDependencyAttribute.xml
index 7a37a0af29e..14696e50e12 100644
--- a/xml/System.Diagnostics.CodeAnalysis/DynamicDependencyAttribute.xml
+++ b/xml/System.Diagnostics.CodeAnalysis/DynamicDependencyAttribute.xml
@@ -42,6 +42,11 @@ This attribute can be used to inform tooling of a dependency that is otherwise n
+
+
+ Initializes a new instance of the class.
+
+
diff --git a/xml/System.Diagnostics.CodeAnalysis/MemberNotNullAttribute.xml b/xml/System.Diagnostics.CodeAnalysis/MemberNotNullAttribute.xml
index 3b752eafe0a..ffd981e4264 100644
--- a/xml/System.Diagnostics.CodeAnalysis/MemberNotNullAttribute.xml
+++ b/xml/System.Diagnostics.CodeAnalysis/MemberNotNullAttribute.xml
@@ -35,6 +35,11 @@
Nullable static analysis
+
+
+ Initializes a new instance of the class.
+
+
diff --git a/xml/System.Diagnostics.CodeAnalysis/MemberNotNullWhenAttribute.xml b/xml/System.Diagnostics.CodeAnalysis/MemberNotNullWhenAttribute.xml
index 191953e4df0..c6e99fa220f 100644
--- a/xml/System.Diagnostics.CodeAnalysis/MemberNotNullWhenAttribute.xml
+++ b/xml/System.Diagnostics.CodeAnalysis/MemberNotNullWhenAttribute.xml
@@ -35,6 +35,11 @@
Nullable static analysis
+
+
+ Initializes a new instance of the class.
+
+
diff --git a/xml/System.Diagnostics.CodeAnalysis/RequiresAssemblyFilesAttribute.xml b/xml/System.Diagnostics.CodeAnalysis/RequiresAssemblyFilesAttribute.xml
index 51a7bed9304..971440c9f0c 100644
--- a/xml/System.Diagnostics.CodeAnalysis/RequiresAssemblyFilesAttribute.xml
+++ b/xml/System.Diagnostics.CodeAnalysis/RequiresAssemblyFilesAttribute.xml
@@ -33,6 +33,11 @@
To be added.
+
+
+ Initializes a new instance of the class.
+
+
diff --git a/xml/System.Diagnostics.CodeAnalysis/StringSyntaxAttribute.xml b/xml/System.Diagnostics.CodeAnalysis/StringSyntaxAttribute.xml
index 2a22b88bcd3..b658a4ce1b3 100644
--- a/xml/System.Diagnostics.CodeAnalysis/StringSyntaxAttribute.xml
+++ b/xml/System.Diagnostics.CodeAnalysis/StringSyntaxAttribute.xml
@@ -32,6 +32,11 @@
To be added.
+
+
+ Initializes a new instance of the class.
+
+
diff --git a/xml/System.Diagnostics.Contracts/Contract.xml b/xml/System.Diagnostics.Contracts/Contract.xml
index 3f241803ac6..6c860e6f41a 100644
--- a/xml/System.Diagnostics.Contracts/Contract.xml
+++ b/xml/System.Diagnostics.Contracts/Contract.xml
@@ -1379,6 +1379,11 @@
+
+
+ Specifies a precondition contract for the enclosing method or property, and throws an exception if the condition for the contract fails.
+
+
diff --git a/xml/System.Diagnostics.Metrics/Counter`1.xml b/xml/System.Diagnostics.Metrics/Counter`1.xml
index 1cc8acf10bc..3ff3974ad18 100644
--- a/xml/System.Diagnostics.Metrics/Counter`1.xml
+++ b/xml/System.Diagnostics.Metrics/Counter`1.xml
@@ -47,6 +47,11 @@ This class supports only the following generic parameter types: Creating metrics
+
+
+ Adds the increment value of the measurement.
+
+
diff --git a/xml/System.Diagnostics.Metrics/Gauge`1.xml b/xml/System.Diagnostics.Metrics/Gauge`1.xml
index 6027ec86a52..233fc4653b7 100644
--- a/xml/System.Diagnostics.Metrics/Gauge`1.xml
+++ b/xml/System.Diagnostics.Metrics/Gauge`1.xml
@@ -35,6 +35,11 @@
This class supports only the following generic parameter types: , , , , , , and
+
+
+ Record the Gauge current value.
+
+
diff --git a/xml/System.Diagnostics.Metrics/Histogram`1.xml b/xml/System.Diagnostics.Metrics/Histogram`1.xml
index cd866937ddd..8083a0f9b5d 100644
--- a/xml/System.Diagnostics.Metrics/Histogram`1.xml
+++ b/xml/System.Diagnostics.Metrics/Histogram`1.xml
@@ -47,6 +47,11 @@ This class supports only the following generic parameter types: Creating metrics
+
+
+ Records a measurement value.
+
+
diff --git a/xml/System.Diagnostics.Metrics/Instrument.xml b/xml/System.Diagnostics.Metrics/Instrument.xml
index 203eb534dca..2b3e0eb9a48 100644
--- a/xml/System.Diagnostics.Metrics/Instrument.xml
+++ b/xml/System.Diagnostics.Metrics/Instrument.xml
@@ -31,6 +31,11 @@
To be added.
+
+
+ Initializes a new instance of the class.
+
+
diff --git a/xml/System.Diagnostics.Metrics/Instrument`1.xml b/xml/System.Diagnostics.Metrics/Instrument`1.xml
index 9d01cc306b2..befc0ae01da 100644
--- a/xml/System.Diagnostics.Metrics/Instrument`1.xml
+++ b/xml/System.Diagnostics.Metrics/Instrument`1.xml
@@ -49,6 +49,11 @@ This class supports only the following generic parameter types:
+
+
+ Initializes a new instance of the class.
+
+
@@ -274,6 +279,11 @@ This class supports only the following generic parameter types: To be added.
+
+
+ Records a measurement by notifying all objects that are listening to this instrument.
+
+
diff --git a/xml/System.Diagnostics.Metrics/Measurement`1.xml b/xml/System.Diagnostics.Metrics/Measurement`1.xml
index f60daa15fa7..92c13614cd2 100644
--- a/xml/System.Diagnostics.Metrics/Measurement`1.xml
+++ b/xml/System.Diagnostics.Metrics/Measurement`1.xml
@@ -41,6 +41,11 @@
To be added.
+
+
+ Initializes a new instance of the class.
+
+
diff --git a/xml/System.Diagnostics.Metrics/Meter.xml b/xml/System.Diagnostics.Metrics/Meter.xml
index cbc9a23aaa6..f6f66f25fce 100644
--- a/xml/System.Diagnostics.Metrics/Meter.xml
+++ b/xml/System.Diagnostics.Metrics/Meter.xml
@@ -40,6 +40,11 @@
Tutorial: Create metrics
+
+
+ Initializes a new instance of the class.
+
+
@@ -168,6 +173,11 @@
You can use the scope object to link several Meters with a particular scope. For instance, a dependency injection container can choose to associate all Meters that are created within the container with its own scope. If the scope object is , it indicates that the Meter is not linked to any particular scope.
+
+
+ Create a metrics Counter object.
+
+
@@ -329,6 +339,11 @@ Counter is an instrument that supports non-negative increments. Example uses for
+
+
+ Create a metrics Gauge object.
+
+
@@ -453,6 +468,11 @@ Counter is an instrument that supports non-negative increments. Example uses for
+
+
+ Histogram is an Instrument which can be used to report arbitrary values that are likely to be statistically meaningful. It is intended for statistics such as histograms, summaries, and percentile.
+
+
@@ -740,6 +760,11 @@ Example uses for Histogram: The request duration and the size of the response pa
Example uses for Histogram: the request duration and the size of the response payload.
+
+
+ Creates an ObservableCounter, which is an instrument that reports monotonically increasing values when the instrument is being observed.
+
+
@@ -1270,6 +1295,11 @@ Example uses for ObservableCounter: The number of page faults for each process.
+
+
+ Creates an ObservableGauge, which is an asynchronous instrument that reports non-additive values when the instrument is being observed.
+
+
@@ -1735,6 +1765,11 @@ Example uses for ObservableCounter: The number of page faults for each process.
To be added.
+
+
+ Creates an ObservableUpDownCounter object. ObservableUpDownCounter is an Instrument that reports increasing or decreasing values when the instrument is being observed.
+
+
@@ -2263,6 +2298,11 @@ Example uses for ObservableUpDownCounter: the process heap size or the approxima
+
+
+ Create a metrics UpDownCounter object.
+
+
@@ -2409,6 +2449,11 @@ UpDownCounter is an Instrument which supports reporting positive or negative met
Example uses for UpDownCounter: reporting the change in active requests or queue size.
+
+
+ Dispose the Meter which will disable all instruments created by this meter.
+
+
diff --git a/xml/System.Diagnostics.Metrics/ObservableInstrument`1.xml b/xml/System.Diagnostics.Metrics/ObservableInstrument`1.xml
index 86b21c97b56..c956a8a57c2 100644
--- a/xml/System.Diagnostics.Metrics/ObservableInstrument`1.xml
+++ b/xml/System.Diagnostics.Metrics/ObservableInstrument`1.xml
@@ -43,6 +43,11 @@ This class supports only the following generic parameter types:
+
+
+ Initializes a new instance of the class.
+
+
diff --git a/xml/System.Diagnostics.Metrics/UpDownCounter`1.xml b/xml/System.Diagnostics.Metrics/UpDownCounter`1.xml
index 64e0ea726e9..d8cd023c35b 100644
--- a/xml/System.Diagnostics.Metrics/UpDownCounter`1.xml
+++ b/xml/System.Diagnostics.Metrics/UpDownCounter`1.xml
@@ -46,6 +46,11 @@ This class supports only the following generic parameter types:
+
+
+ Records the delta value of the measurement. The delta can be positive, negative, or zero.
+
+
diff --git a/xml/System.Diagnostics.Tracing/EventCounter.xml b/xml/System.Diagnostics.Tracing/EventCounter.xml
index 6cbc40cdf6f..c01689bec20 100644
--- a/xml/System.Diagnostics.Tracing/EventCounter.xml
+++ b/xml/System.Diagnostics.Tracing/EventCounter.xml
@@ -200,6 +200,11 @@ After being disposed, this counter will stop reporting values. If an To be added.
+
+
+ Writes the metric if performance counters are on.
+
+
diff --git a/xml/System.Diagnostics.Tracing/EventSource.xml b/xml/System.Diagnostics.Tracing/EventSource.xml
index 6720e62305b..a4fc631367d 100644
--- a/xml/System.Diagnostics.Tracing/EventSource.xml
+++ b/xml/System.Diagnostics.Tracing/EventSource.xml
@@ -1929,6 +1929,11 @@ In such cases, the GUID that is used to register the is .
+
+
+ Writes an event with the specified name and data.
+
+
diff --git a/xml/System.Diagnostics/Activity.xml b/xml/System.Diagnostics/Activity.xml
index e86fd24a6d5..e2af193d3a7 100644
--- a/xml/System.Diagnostics/Activity.xml
+++ b/xml/System.Diagnostics/Activity.xml
@@ -308,6 +308,11 @@ Callers should either restrict the number of events added to the same `Activity`
+
+
+ Updates the activity to have a tag with an additional and .
+
+
@@ -633,6 +638,11 @@ If the `DisplayName` property is not set, it will return the same value as `Oper
+
+
+ When overriden by a derived type, this method releases any allocated resources.
+
+
@@ -1634,6 +1644,11 @@ The specified format will take precedence over `Parent.IdFormat`, the
+
+
+ Sets the parent ID using the W3C convention of a TraceId and a SpanId.
+
+
diff --git a/xml/System.Diagnostics/ActivityContext.xml b/xml/System.Diagnostics/ActivityContext.xml
index 4cd6592b5f9..db823f078d0 100644
--- a/xml/System.Diagnostics/ActivityContext.xml
+++ b/xml/System.Diagnostics/ActivityContext.xml
@@ -94,6 +94,11 @@ ActivityContext contains the property `IsRemote`, which is not part of W3C. `IsR
+
+
+ Indicates whether the current object is equal to another object of the same type.
+
+
@@ -449,6 +454,11 @@ ActivityContext contains the property `IsRemote`, which is not part of W3C. `IsR
To be added.
+
+
+ Tries to parse the W3C trace context headers to an object.
+
+
diff --git a/xml/System.Diagnostics/ActivityEvent.xml b/xml/System.Diagnostics/ActivityEvent.xml
index 631683755f3..d3c6385a376 100644
--- a/xml/System.Diagnostics/ActivityEvent.xml
+++ b/xml/System.Diagnostics/ActivityEvent.xml
@@ -40,6 +40,11 @@
To be added.
+
+
+ Initializes a new instance of the class.
+
+
diff --git a/xml/System.Diagnostics/ActivityLink.xml b/xml/System.Diagnostics/ActivityLink.xml
index 337e2e21eee..06cd55952cb 100644
--- a/xml/System.Diagnostics/ActivityLink.xml
+++ b/xml/System.Diagnostics/ActivityLink.xml
@@ -132,6 +132,11 @@ Activity links can be used to represent batched operations where an activity was
To be added.
+
+
+ Indicates whether the current activity link is equal to another object.
+
+
diff --git a/xml/System.Diagnostics/ActivitySource.xml b/xml/System.Diagnostics/ActivitySource.xml
index 24316f7bb42..c6f944f4fc5 100644
--- a/xml/System.Diagnostics/ActivitySource.xml
+++ b/xml/System.Diagnostics/ActivitySource.xml
@@ -40,6 +40,11 @@
To be added.
+
+
+ Initializes a new instance of the class.
+
+
@@ -196,6 +201,11 @@
To be added.
+
+
+ Creates a new object if there is any listener to the Activity, returns otherwise.
+
+
@@ -458,6 +468,11 @@ If the Activity object is created, it will not start automatically. Callers need
To be added.
+
+
+ Creates and starts a new activity if there are active listeners for it, using the specified name and activity kind.
+
+
diff --git a/xml/System.Diagnostics/ActivitySpanId.xml b/xml/System.Diagnostics/ActivitySpanId.xml
index c1718155379..4d7e8cac65b 100644
--- a/xml/System.Diagnostics/ActivitySpanId.xml
+++ b/xml/System.Diagnostics/ActivitySpanId.xml
@@ -223,6 +223,11 @@ The characters in are not all lower-case hexadecimal
To be added.
+
+
+ Determines whether this instance and the specified instance have the same value.
+
+
diff --git a/xml/System.Diagnostics/ActivityTagsCollection.xml b/xml/System.Diagnostics/ActivityTagsCollection.xml
index d2ea348e8fc..01a321b7c96 100644
--- a/xml/System.Diagnostics/ActivityTagsCollection.xml
+++ b/xml/System.Diagnostics/ActivityTagsCollection.xml
@@ -68,6 +68,11 @@ This collection behaves as follows:
To be added.
+
+
+ Initializes a new instance of the class.
+
+
@@ -125,6 +130,11 @@ This collection behaves as follows:
To be added.
+
+
+ Adds an item to the collection.
+
+
@@ -523,6 +533,11 @@ This collection behaves as follows:
To be added.
+
+
+ Removes the tag with the specified key from the collection.
+
+
diff --git a/xml/System.Diagnostics/ActivityTraceId.xml b/xml/System.Diagnostics/ActivityTraceId.xml
index 2392b161179..5e7aa646884 100644
--- a/xml/System.Diagnostics/ActivityTraceId.xml
+++ b/xml/System.Diagnostics/ActivityTraceId.xml
@@ -225,6 +225,11 @@ The characters in are not all lower-case hexadecimal
To be added.
+
+
+ Determines whether the current instance and a specified are equal.
+
+
diff --git a/xml/System.Diagnostics/Debug+AssertInterpolatedStringHandler.xml b/xml/System.Diagnostics/Debug+AssertInterpolatedStringHandler.xml
index 8bb2692f673..1aedd03da42 100644
--- a/xml/System.Diagnostics/Debug+AssertInterpolatedStringHandler.xml
+++ b/xml/System.Diagnostics/Debug+AssertInterpolatedStringHandler.xml
@@ -91,6 +91,11 @@ This is intended to be called only by compiler-generated code. Arguments are not
+
+
+ Writes the specified value to the handler.
+
+
@@ -252,6 +257,11 @@ This is intended to be called only by compiler-generated code. Arguments are not
To be added.
+
+
+ Writes the specified value to the handler.
+
+
diff --git a/xml/System.Diagnostics/Debug+WriteIfInterpolatedStringHandler.xml b/xml/System.Diagnostics/Debug+WriteIfInterpolatedStringHandler.xml
index c1bb0995265..d5311f131dd 100644
--- a/xml/System.Diagnostics/Debug+WriteIfInterpolatedStringHandler.xml
+++ b/xml/System.Diagnostics/Debug+WriteIfInterpolatedStringHandler.xml
@@ -91,6 +91,11 @@ This is intended to be called only by compiler-generated code. Arguments are not
+
+
+ Writes the specified value to the handler.
+
+
@@ -252,6 +257,11 @@ This is intended to be called only by compiler-generated code. Arguments are not
To be added.
+
+
+ Writes the specified value to the handler.
+
+
diff --git a/xml/System.Diagnostics/DiagnosticListener.xml b/xml/System.Diagnostics/DiagnosticListener.xml
index 855af64ea17..ff7114ae296 100644
--- a/xml/System.Diagnostics/DiagnosticListener.xml
+++ b/xml/System.Diagnostics/DiagnosticListener.xml
@@ -164,6 +164,11 @@ When you subscribe to this, you get callbacks for all NotificationListeners in t
Notification listeners do not die on their own because they are in a global list (for discoverability). You must dispose of them explicitly. Note that we do not do the Dispose(bool) pattern because we don't want to support subclasses that have non-managed state.
+
+
+ Determines whether there are any registered subscribers.
+
+
diff --git a/xml/System.Diagnostics/DiagnosticMethodInfo.xml b/xml/System.Diagnostics/DiagnosticMethodInfo.xml
index 79abc5b93b6..696ee9d86d4 100644
--- a/xml/System.Diagnostics/DiagnosticMethodInfo.xml
+++ b/xml/System.Diagnostics/DiagnosticMethodInfo.xml
@@ -29,6 +29,11 @@
To be added.
+
+
+ Creates a that represents the target of the delegate.
+
+
diff --git a/xml/System.Diagnostics/DiagnosticSource.xml b/xml/System.Diagnostics/DiagnosticSource.xml
index 113dc9d38ac..14b6722fed7 100644
--- a/xml/System.Diagnostics/DiagnosticSource.xml
+++ b/xml/System.Diagnostics/DiagnosticSource.xml
@@ -67,6 +67,11 @@
To be added.
+
+
+ Verifies if the notification event is enabled.
+
+
diff --git a/xml/System.Diagnostics/Process.xml b/xml/System.Diagnostics/Process.xml
index 72fb0de414e..941b887d274 100644
--- a/xml/System.Diagnostics/Process.xml
+++ b/xml/System.Diagnostics/Process.xml
@@ -761,6 +761,11 @@ process.BeginOutputReadLine();
No process is associated with this object.
+
+
+ Release all resources used by this process.
+
+
diff --git a/xml/System.Diagnostics/Stopwatch.xml b/xml/System.Diagnostics/Stopwatch.xml
index 8490eb953e3..48b0d6e1624 100644
--- a/xml/System.Diagnostics/Stopwatch.xml
+++ b/xml/System.Diagnostics/Stopwatch.xml
@@ -436,6 +436,11 @@
+
+
+ Gets the elapsed time between two timestamps retrieved using .
+
+
diff --git a/xml/System.Diagnostics/TagList.xml b/xml/System.Diagnostics/TagList.xml
index c38adf6247d..2807d25d0a1 100644
--- a/xml/System.Diagnostics/TagList.xml
+++ b/xml/System.Diagnostics/TagList.xml
@@ -105,6 +105,11 @@
To be added.
+
+
+ Adds a tag to the list.
+
+
@@ -258,6 +263,11 @@
To be added.
+
+
+ Copies the contents of this into a destination span.
+
+
diff --git a/xml/System.Diagnostics/UnreachableException.xml b/xml/System.Diagnostics/UnreachableException.xml
index def401d6420..dd49e7ec796 100644
--- a/xml/System.Diagnostics/UnreachableException.xml
+++ b/xml/System.Diagnostics/UnreachableException.xml
@@ -28,6 +28,11 @@
To be added.
+
+
+ Initializes a new instance of the class.
+
+
diff --git a/xml/System.DirectoryServices.ActiveDirectory/ActiveDirectorySiteLinkBridge.xml b/xml/System.DirectoryServices.ActiveDirectory/ActiveDirectorySiteLinkBridge.xml
index 419ee4ca30b..39929b43ea0 100644
--- a/xml/System.DirectoryServices.ActiveDirectory/ActiveDirectorySiteLinkBridge.xml
+++ b/xml/System.DirectoryServices.ActiveDirectory/ActiveDirectorySiteLinkBridge.xml
@@ -33,6 +33,11 @@
To be added.
+
+
+ Initializes a new instance of the class.
+
+
diff --git a/xml/System.DirectoryServices.ActiveDirectory/ConfigurationSet.xml b/xml/System.DirectoryServices.ActiveDirectory/ConfigurationSet.xml
index ddbfe5cd8bc..45f18bd4cac 100644
--- a/xml/System.DirectoryServices.ActiveDirectory/ConfigurationSet.xml
+++ b/xml/System.DirectoryServices.ActiveDirectory/ConfigurationSet.xml
@@ -147,6 +147,11 @@
To be added.
+
+
+ Finds an AD LDS instance in this configuration set.
+
+
@@ -254,6 +259,11 @@
+
+
+ Returns all AD LDS instances in this configuration set.
+
+
diff --git a/xml/System.DirectoryServices/DirectoryServicesPermissionEntryCollection.xml b/xml/System.DirectoryServices/DirectoryServicesPermissionEntryCollection.xml
index 5cc927348b8..4e5d49ee2b6 100644
--- a/xml/System.DirectoryServices/DirectoryServicesPermissionEntryCollection.xml
+++ b/xml/System.DirectoryServices/DirectoryServicesPermissionEntryCollection.xml
@@ -76,6 +76,11 @@
+
+
+ Appends the contents of the specified array to this collection.
+
+
diff --git a/xml/System.DirectoryServices/DirectorySynchronization.xml b/xml/System.DirectoryServices/DirectorySynchronization.xml
index 6ce3c65bd7a..faded03b606 100644
--- a/xml/System.DirectoryServices/DirectorySynchronization.xml
+++ b/xml/System.DirectoryServices/DirectorySynchronization.xml
@@ -54,6 +54,11 @@ foreach(SearchResult res in src.FindAll() )
+
+
+ Initializes a new instance of the class.
+
+
@@ -278,6 +283,11 @@ foreach(SearchResult res in src.FindAll() )
The value is not one of the values.
+
+
+ Resets the directory synchronization search cookie.
+
+
diff --git a/xml/System.DirectoryServices/DirectoryVirtualListView.xml b/xml/System.DirectoryServices/DirectoryVirtualListView.xml
index 6be77f4a078..33e2e3e76ed 100644
--- a/xml/System.DirectoryServices/DirectoryVirtualListView.xml
+++ b/xml/System.DirectoryServices/DirectoryVirtualListView.xml
@@ -88,6 +88,11 @@ foreach(SearchResult res in src.FindAll() )
+
+
+ Initializes a new instance of the class.
+
+
diff --git a/xml/System.DirectoryServices/SchemaNameCollection.xml b/xml/System.DirectoryServices/SchemaNameCollection.xml
index 4aeca77d1ea..11a03e2b619 100644
--- a/xml/System.DirectoryServices/SchemaNameCollection.xml
+++ b/xml/System.DirectoryServices/SchemaNameCollection.xml
@@ -71,6 +71,11 @@
To be added.
+
+
+ Appends a set of specified schema names to this collection.
+
+
diff --git a/xml/System.DirectoryServices/SortOption.xml b/xml/System.DirectoryServices/SortOption.xml
index 9c2906acb55..ff5c5498780 100644
--- a/xml/System.DirectoryServices/SortOption.xml
+++ b/xml/System.DirectoryServices/SortOption.xml
@@ -35,6 +35,11 @@
+
+
+ Initializes a new instance of the class.
+
+
diff --git a/xml/System.Drawing.Drawing2D/CustomLineCap.xml b/xml/System.Drawing.Drawing2D/CustomLineCap.xml
index 211b8bf464e..e529ea69546 100644
--- a/xml/System.Drawing.Drawing2D/CustomLineCap.xml
+++ b/xml/System.Drawing.Drawing2D/CustomLineCap.xml
@@ -409,6 +409,11 @@ private void CloneExample(PaintEventArgs e)
+
+
+ Releases all resources used by this object.
+
+
diff --git a/xml/System.Drawing.Drawing2D/GraphicsPath.xml b/xml/System.Drawing.Drawing2D/GraphicsPath.xml
index 70fc028fd23..70cbaf472ce 100644
--- a/xml/System.Drawing.Drawing2D/GraphicsPath.xml
+++ b/xml/System.Drawing.Drawing2D/GraphicsPath.xml
@@ -3464,6 +3464,11 @@
+
+
+ Adds a rounded rectangle to this path.
+
+
diff --git a/xml/System.Drawing.Drawing2D/GraphicsPathIterator.xml b/xml/System.Drawing.Drawing2D/GraphicsPathIterator.xml
index 5a07c69dcf6..aa6118a6823 100644
--- a/xml/System.Drawing.Drawing2D/GraphicsPathIterator.xml
+++ b/xml/System.Drawing.Drawing2D/GraphicsPathIterator.xml
@@ -91,6 +91,11 @@
To be added.
+
+
+ Copies the property and property arrays of the associated into the two specified arrays.
+
+
@@ -283,6 +288,11 @@
+
+
+ Copies the property and property arrays of the associated into the two specified arrays.
+
+
diff --git a/xml/System.Drawing.Drawing2D/Matrix.xml b/xml/System.Drawing.Drawing2D/Matrix.xml
index 990f69d443f..9ffdf9bff93 100644
--- a/xml/System.Drawing.Drawing2D/Matrix.xml
+++ b/xml/System.Drawing.Drawing2D/Matrix.xml
@@ -2021,6 +2021,11 @@ Matrix myMatrix = new Matrix(3, 5, 1, 2, 2, 4);
+
+
+ Multiplies each vector in an array by the matrix. The translation elements of this matrix (third row) are ignored.
+
+
diff --git a/xml/System.Drawing.Imaging.Effects/ColorLookupTableEffect.xml b/xml/System.Drawing.Imaging.Effects/ColorLookupTableEffect.xml
index 7c7bd60e92c..2350803435e 100644
--- a/xml/System.Drawing.Imaging.Effects/ColorLookupTableEffect.xml
+++ b/xml/System.Drawing.Imaging.Effects/ColorLookupTableEffect.xml
@@ -20,6 +20,11 @@
Individual color component values are changed to entries in a series of lookup tables.
+
+
+ Initializes a new instance of the class.
+
+
diff --git a/xml/System.Drawing.Imaging.Effects/Effect.xml b/xml/System.Drawing.Imaging.Effects/Effect.xml
index 02abe61703f..263231e2f02 100644
--- a/xml/System.Drawing.Imaging.Effects/Effect.xml
+++ b/xml/System.Drawing.Imaging.Effects/Effect.xml
@@ -24,6 +24,11 @@
To be added.
+
+
+ Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
+
+
diff --git a/xml/System.Drawing.Imaging.Effects/TintEffect.xml b/xml/System.Drawing.Imaging.Effects/TintEffect.xml
index 736cf708a04..09dd224b0b9 100644
--- a/xml/System.Drawing.Imaging.Effects/TintEffect.xml
+++ b/xml/System.Drawing.Imaging.Effects/TintEffect.xml
@@ -20,6 +20,11 @@
To be added.
+
+
+ Initializes a new instance of the class.
+
+
diff --git a/xml/System.Drawing.Imaging/ColorPalette.xml b/xml/System.Drawing.Imaging/ColorPalette.xml
index 4d1d35382be..b485ab542b4 100644
--- a/xml/System.Drawing.Imaging/ColorPalette.xml
+++ b/xml/System.Drawing.Imaging/ColorPalette.xml
@@ -52,6 +52,11 @@
+
+
+ Initializes a new instance of the class.
+
+
diff --git a/xml/System.Drawing.Imaging/ImageAttributes.xml b/xml/System.Drawing.Imaging/ImageAttributes.xml
index 986296cde1f..d03de0c6f69 100644
--- a/xml/System.Drawing.Imaging/ImageAttributes.xml
+++ b/xml/System.Drawing.Imaging/ImageAttributes.xml
@@ -1146,6 +1146,11 @@
+
+
+ Sets the color-remap table for the brush category.
+
+
diff --git a/xml/System.Drawing/Bitmap.xml b/xml/System.Drawing/Bitmap.xml
index 2aa64e1ce44..3f15d27b219 100644
--- a/xml/System.Drawing/Bitmap.xml
+++ b/xml/System.Drawing/Bitmap.xml
@@ -829,6 +829,11 @@
The height or width of is 0.
+
+
+ Converts the bitmap to the specified . The original pixel data is replaced with the new format.
+
+
diff --git a/xml/System.Drawing/CharacterRange.xml b/xml/System.Drawing/CharacterRange.xml
index 8c1d7c259d1..b8f0a42d5b8 100644
--- a/xml/System.Drawing/CharacterRange.xml
+++ b/xml/System.Drawing/CharacterRange.xml
@@ -104,6 +104,11 @@
+
+
+ Gets a value indicating whether this object is equivalent to the specified object.
+
+
diff --git a/xml/System.Drawing/Color.xml b/xml/System.Drawing/Color.xml
index 1c22dc6c716..4bdc3cadff1 100644
--- a/xml/System.Drawing/Color.xml
+++ b/xml/System.Drawing/Color.xml
@@ -2116,6 +2116,11 @@ This example is designed to be used with a Windows Form. Paste the code into the
To be added.
+
+
+ Indicates whether the current object is equal to another object of the same type.
+
+
diff --git a/xml/System.Drawing/Graphics.xml b/xml/System.Drawing/Graphics.xml
index e743a0b6ff9..3bc78a7cfa4 100644
--- a/xml/System.Drawing/Graphics.xml
+++ b/xml/System.Drawing/Graphics.xml
@@ -8645,6 +8645,11 @@ The object has a transform applied othe
+
+
+ Draws the outline of the specified rounded rectangle.
+
+
@@ -14789,6 +14794,11 @@ The object has a transform applied othe
is .
+
+
+ Fills the interior of a rounded rectangle with a .
+
+
@@ -15395,6 +15405,11 @@ The object has a transform applied othe
How to: Create Graphics Objects for Drawing
+
+
+ Gets the cumulative offset.
+
+
@@ -16577,6 +16592,11 @@ The object has a transform applied othe
+
+
+ Gets an array of objects, each of which bounds a range of character positions within the specified string.
+
+
diff --git a/xml/System.Drawing/Icon.xml b/xml/System.Drawing/Icon.xml
index 0cb75198e27..a9c8e7e82b1 100644
--- a/xml/System.Drawing/Icon.xml
+++ b/xml/System.Drawing/Icon.xml
@@ -687,6 +687,11 @@
The indicates a Universal Naming Convention (UNC) path.
+
+
+ Extracts a specified icon from the given .
+
+
diff --git a/xml/System.Drawing/ImageAnimator.xml b/xml/System.Drawing/ImageAnimator.xml
index 7967b28f006..026604ec5a4 100644
--- a/xml/System.Drawing/ImageAnimator.xml
+++ b/xml/System.Drawing/ImageAnimator.xml
@@ -185,6 +185,11 @@
To be added.
+
+
+ Advances the frame in all images currently being animated. The new frame is drawn the next time the image is rendered.
+
+
diff --git a/xml/System.Drawing/Point.xml b/xml/System.Drawing/Point.xml
index 6dfcfd44fc3..b4199de01c2 100644
--- a/xml/System.Drawing/Point.xml
+++ b/xml/System.Drawing/Point.xml
@@ -431,6 +431,11 @@
To be added.
+
+
+ Specifies whether this point instance contains the same coordinates as another point.
+
+
diff --git a/xml/System.Drawing/PointF.xml b/xml/System.Drawing/PointF.xml
index 19e704595fd..2fba208ec52 100644
--- a/xml/System.Drawing/PointF.xml
+++ b/xml/System.Drawing/PointF.xml
@@ -71,6 +71,11 @@
+
+
+ Initializes a new instance of the class.
+
+
@@ -328,6 +333,11 @@
To be added.
+
+
+ Indicates whether the current object is equal to another object of the same type.
+
+
@@ -752,6 +762,11 @@
+
+
+ Converts the specified to a .
+
+
diff --git a/xml/System.Drawing/Rectangle.xml b/xml/System.Drawing/Rectangle.xml
index 70ba5d0eeae..2b41aaf9a2d 100644
--- a/xml/System.Drawing/Rectangle.xml
+++ b/xml/System.Drawing/Rectangle.xml
@@ -590,6 +590,11 @@
+
+
+ Indicates whether the current object is equal to another object of the same type.
+
+
diff --git a/xml/System.Drawing/RectangleF.xml b/xml/System.Drawing/RectangleF.xml
index 9772cf91e77..adc23f1e5a2 100644
--- a/xml/System.Drawing/RectangleF.xml
+++ b/xml/System.Drawing/RectangleF.xml
@@ -529,6 +529,11 @@
+
+
+ Indicates whether the current object is equal to another object of the same type.
+
+
@@ -1519,6 +1524,11 @@
+
+
+ Converts the specified to a .
+
+
diff --git a/xml/System.Drawing/Size.xml b/xml/System.Drawing/Size.xml
index aa2db514fa9..c37ecd75102 100644
--- a/xml/System.Drawing/Size.xml
+++ b/xml/System.Drawing/Size.xml
@@ -345,6 +345,11 @@ The structure is used to specify a height and width t
To be added.
+
+
+ Indicates whether the current object is equal to another object of the same type.
+
+
@@ -696,6 +701,11 @@ The structure is used to specify a height and width t
+
+
+ Divides the specified by the specified integer.
+
+
@@ -1008,6 +1018,11 @@ The structure is used to specify a height and width t
To be added.
+
+
+ Multiplies the specified by the specified integer.
+
+
diff --git a/xml/System.Drawing/SizeF.xml b/xml/System.Drawing/SizeF.xml
index 700e2217c63..e05e03e7b06 100644
--- a/xml/System.Drawing/SizeF.xml
+++ b/xml/System.Drawing/SizeF.xml
@@ -387,6 +387,11 @@
To be added.
+
+
+ Indicates whether the current object is equal to another object of the same type.
+
+
@@ -834,6 +839,11 @@
To be added.
+
+
+ Converts the specified to a .
+
+
@@ -1007,6 +1017,11 @@
To be added.
+
+
+ Multiplies the specified by the specified single-precision floating-point number.
+
+
diff --git a/xml/System.Drawing/SystemIcons.xml b/xml/System.Drawing/SystemIcons.xml
index d6a59df729a..9f2dec55ffa 100644
--- a/xml/System.Drawing/SystemIcons.xml
+++ b/xml/System.Drawing/SystemIcons.xml
@@ -202,6 +202,11 @@
To be added.
+
+
+ Gets the specified Windows shell stock icon.
+
+
From 7cbdf46057c24b67903508c052dca3a6d539e720 Mon Sep 17 00:00:00 2001
From: Genevieve Warren <24882762+gewarren@users.noreply.github.com>
Date: Sat, 27 Jun 2026 08:46:28 -0700
Subject: [PATCH 2/3] Apply suggestions from code review
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
---
xml/System.Data.Common/DbConnection.xml | 7 +------
xml/System.Data.Common/DbDataSource.xml | 2 +-
xml/System.Diagnostics.Metrics/Measurement`1.xml | 2 +-
xml/System.Diagnostics.Metrics/Meter.xml | 10 +++++-----
xml/System.Diagnostics/Activity.xml | 2 +-
xml/System.Diagnostics/ActivityEvent.xml | 2 +-
xml/System.Diagnostics/ActivitySource.xml | 2 +-
xml/System.Diagnostics/Process.xml | 2 +-
xml/System.Drawing/PointF.xml | 2 +-
9 files changed, 13 insertions(+), 18 deletions(-)
diff --git a/xml/System.Data.Common/DbConnection.xml b/xml/System.Data.Common/DbConnection.xml
index 1bd9f5917ec..24780cedb90 100644
--- a/xml/System.Data.Common/DbConnection.xml
+++ b/xml/System.Data.Common/DbConnection.xml
@@ -1520,12 +1520,7 @@ This property returns `false` by default; providers that implement
- This is an asynchronous version of .
- Providers should override with an appropriate implementation.
- The can optionally be honored.
- The default implementation invokes the synchronous call and returns a completed task.
- The default implementation will return a cancelled task if passed an already cancelled .
- Exceptions thrown by will be communicated via the returned Task Exception property.
+ Asynchronously returns schema information for the data source of this .
diff --git a/xml/System.Data.Common/DbDataSource.xml b/xml/System.Data.Common/DbDataSource.xml
index 6c0bd76d4d5..d5173dd8f72 100644
--- a/xml/System.Data.Common/DbDataSource.xml
+++ b/xml/System.Data.Common/DbDataSource.xml
@@ -305,7 +305,7 @@
- Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources asynchronously.
+ Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
diff --git a/xml/System.Diagnostics.Metrics/Measurement`1.xml b/xml/System.Diagnostics.Metrics/Measurement`1.xml
index 92c13614cd2..4901f0013c9 100644
--- a/xml/System.Diagnostics.Metrics/Measurement`1.xml
+++ b/xml/System.Diagnostics.Metrics/Measurement`1.xml
@@ -43,7 +43,7 @@
- Initializes a new instance of the class.
+ Initializes a new instance of the struct.
diff --git a/xml/System.Diagnostics.Metrics/Meter.xml b/xml/System.Diagnostics.Metrics/Meter.xml
index f6f66f25fce..eb5121b31aa 100644
--- a/xml/System.Diagnostics.Metrics/Meter.xml
+++ b/xml/System.Diagnostics.Metrics/Meter.xml
@@ -175,7 +175,7 @@
- Create a metrics Counter object.
+ Creates a metrics Counter object.
@@ -341,7 +341,7 @@ Counter is an instrument that supports non-negative increments. Example uses for
- Create a metrics Gauge object.
+ Creates a metrics Gauge object.
@@ -470,7 +470,7 @@ Counter is an instrument that supports non-negative increments. Example uses for
- Histogram is an Instrument which can be used to report arbitrary values that are likely to be statistically meaningful. It is intended for statistics such as histograms, summaries, and percentile.
+ Creates a metrics Histogram instrument.
@@ -2300,7 +2300,7 @@ Example uses for ObservableUpDownCounter: the process heap size or the approxima
- Create a metrics UpDownCounter object.
+ Creates a metrics UpDownCounter object.
@@ -2451,7 +2451,7 @@ UpDownCounter is an Instrument which supports reporting positive or negative met
- Dispose the Meter which will disable all instruments created by this meter.
+ Disposes the Meter, which disables all instruments created by this meter.
diff --git a/xml/System.Diagnostics/Activity.xml b/xml/System.Diagnostics/Activity.xml
index e2af193d3a7..fdc26d2c1f5 100644
--- a/xml/System.Diagnostics/Activity.xml
+++ b/xml/System.Diagnostics/Activity.xml
@@ -640,7 +640,7 @@ If the `DisplayName` property is not set, it will return the same value as `Oper
- When overriden by a derived type, this method releases any allocated resources.
+ Releases all resources used by the current .
diff --git a/xml/System.Diagnostics/ActivityEvent.xml b/xml/System.Diagnostics/ActivityEvent.xml
index d3c6385a376..25ab471785e 100644
--- a/xml/System.Diagnostics/ActivityEvent.xml
+++ b/xml/System.Diagnostics/ActivityEvent.xml
@@ -42,7 +42,7 @@
- Initializes a new instance of the class.
+ Initializes a new instance of the struct.
diff --git a/xml/System.Diagnostics/ActivitySource.xml b/xml/System.Diagnostics/ActivitySource.xml
index c6f944f4fc5..380169868f4 100644
--- a/xml/System.Diagnostics/ActivitySource.xml
+++ b/xml/System.Diagnostics/ActivitySource.xml
@@ -203,7 +203,7 @@
- Creates a new object if there is any listener to the Activity, returns otherwise.
+ Creates a new if there are listeners for it; otherwise, returns .
diff --git a/xml/System.Diagnostics/Process.xml b/xml/System.Diagnostics/Process.xml
index 941b887d274..dfa412023f1 100644
--- a/xml/System.Diagnostics/Process.xml
+++ b/xml/System.Diagnostics/Process.xml
@@ -763,7 +763,7 @@ process.BeginOutputReadLine();
- Release all resources used by this process.
+ Releases all resources used by this process.
diff --git a/xml/System.Drawing/PointF.xml b/xml/System.Drawing/PointF.xml
index 2fba208ec52..c5018c928c3 100644
--- a/xml/System.Drawing/PointF.xml
+++ b/xml/System.Drawing/PointF.xml
@@ -73,7 +73,7 @@
- Initializes a new instance of the class.
+ Initializes a new instance of the struct.
From 71083c8d5212435a1a3bf7e83dfd332c21ac9aa5 Mon Sep 17 00:00:00 2001
From: Genevieve Warren <24882762+gewarren@users.noreply.github.com>
Date: Wed, 1 Jul 2026 14:56:09 -0700
Subject: [PATCH 3/3] Merge generic and non-generic overloads into a single
MemberGroup
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
---
xml/System.Diagnostics.Contracts/Contract.xml | 5 -----
xml/System.Diagnostics.Tracing/EventSource.xml | 5 -----
.../Debug+AssertInterpolatedStringHandler.xml | 5 -----
.../Debug+WriteIfInterpolatedStringHandler.xml | 5 -----
4 files changed, 20 deletions(-)
diff --git a/xml/System.Diagnostics.Contracts/Contract.xml b/xml/System.Diagnostics.Contracts/Contract.xml
index 6c860e6f41a..3f241803ac6 100644
--- a/xml/System.Diagnostics.Contracts/Contract.xml
+++ b/xml/System.Diagnostics.Contracts/Contract.xml
@@ -1379,11 +1379,6 @@
-
-
- Specifies a precondition contract for the enclosing method or property, and throws an exception if the condition for the contract fails.
-
-
diff --git a/xml/System.Diagnostics.Tracing/EventSource.xml b/xml/System.Diagnostics.Tracing/EventSource.xml
index a4fc631367d..6720e62305b 100644
--- a/xml/System.Diagnostics.Tracing/EventSource.xml
+++ b/xml/System.Diagnostics.Tracing/EventSource.xml
@@ -1929,11 +1929,6 @@ In such cases, the GUID that is used to register the is .
-
-
- Writes an event with the specified name and data.
-
-
diff --git a/xml/System.Diagnostics/Debug+AssertInterpolatedStringHandler.xml b/xml/System.Diagnostics/Debug+AssertInterpolatedStringHandler.xml
index 1aedd03da42..5a66aab062c 100644
--- a/xml/System.Diagnostics/Debug+AssertInterpolatedStringHandler.xml
+++ b/xml/System.Diagnostics/Debug+AssertInterpolatedStringHandler.xml
@@ -257,11 +257,6 @@ This is intended to be called only by compiler-generated code. Arguments are not
To be added.
-
-
- Writes the specified value to the handler.
-
-
diff --git a/xml/System.Diagnostics/Debug+WriteIfInterpolatedStringHandler.xml b/xml/System.Diagnostics/Debug+WriteIfInterpolatedStringHandler.xml
index d5311f131dd..1f99739b711 100644
--- a/xml/System.Diagnostics/Debug+WriteIfInterpolatedStringHandler.xml
+++ b/xml/System.Diagnostics/Debug+WriteIfInterpolatedStringHandler.xml
@@ -257,11 +257,6 @@ This is intended to be called only by compiler-generated code. Arguments are not
To be added.
-
-
- Writes the specified value to the handler.
-
-