Skip to content

Commit

Permalink
fix up paramrefs - Microsoft.* namespaces (#10187)
Browse files Browse the repository at this point in the history
  • Loading branch information
gewarren authored Jul 31, 2024
1 parent 0d795ed commit 942944e
Show file tree
Hide file tree
Showing 6 changed files with 352 additions and 353 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,14 +68,14 @@
</Parameters>
<Docs>
<param name="instanceType">The type to activate.</param>
<param name="argumentTypes">
The types of objects, in order, that will be passed to the returned function as its second parameter
<param name="argumentTypes">
The types of objects, in order, that will be passed to the returned function as its second parameter
</param>
<summary>Create a delegate that will instantiate a type with constructor arguments provided directly
<summary>Create a delegate that will instantiate a type with constructor arguments provided directly
and/or from an <see cref="T:System.IServiceProvider" />.</summary>
<returns>
A factory that will instantiate instanceType using an <see cref="T:System.IServiceProvider" />
and an argument array containing objects matching the types defined in argumentTypes
<returns>
A factory that will instantiate instanceType using an <see cref="T:System.IServiceProvider" />
and an argument array containing objects matching the types defined in argumentTypes
.</returns>
<remarks>To be added.</remarks>
</Docs>
Expand Down Expand Up @@ -117,7 +117,7 @@
<typeparam name="T">The type to activate.</typeparam>
<param name="argumentTypes">The types of objects, in order, that will be passed to the returned function as its second parameter.</param>
<summary>Creates a delegate that will instantiate a type with constructor arguments provided directly or from an <see cref="T:System.IServiceProvider" />.</summary>
<returns>A factory that will instantiate type <paramref name="T" /> using an <see cref="T:System.IServiceProvider" /> and an argument array containing objects matching the types defined in <paramref name="argumentTypes" />.</returns>
<returns>A factory that will instantiate type <typeparamref name="T" /> using an <see cref="T:System.IServiceProvider" /> and an argument array containing objects matching the types defined in <paramref name="argumentTypes" />.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,7 @@
<summary>Gets service of type <paramref name="serviceType" /> from the <see cref="T:System.IServiceProvider" /> that implements this interface.</summary>
<returns>A service object of type <paramref name="serviceType" />. Throws an exception if the <see cref="T:System.IServiceProvider" /> cannot create the object.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.ObjectDisposedException">
<paramref name="provider" /> has already been disposed.</exception>
<exception cref="T:System.ObjectDisposedException">The provider has already been disposed.</exception>
</Docs>
</Member>
</Members>
Expand Down
6 changes: 3 additions & 3 deletions xml/Microsoft.Extensions.Http/HttpMessageHandlerBuilder.xml
Original file line number Diff line number Diff line change
Expand Up @@ -133,9 +133,9 @@
<returns>The HTTP message handler chain.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.ArgumentNullException">
<paramref name="primaryHandler " /> or <paramref name="additionalHandlers " /> is <see langword="null" />.</exception>
<paramref name="primaryHandler" /> or <paramref name="additionalHandlers" /> is <see langword="null" />.</exception>
<exception cref="T:System.InvalidOperationException">
<paramref name="additionalHandlers " /> contains a <see langword="null" /> entry.
<paramref name="additionalHandlers" /> contains a <see langword="null" /> entry.

-or-

Expand Down Expand Up @@ -222,7 +222,7 @@
<summary>Gets an <see cref="T:System.IServiceProvider" /> which can be used to resolve services
from the dependency injection container.</summary>
<value>To be added.</value>
<remarks>This property is sensitive to the value of
<remarks>This property is sensitive to the value of
<see cref="P:Microsoft.Extensions.Http.HttpClientFactoryOptions.SuppressHandlerScope" />. If <see langword="true" /> this
property will be a reference to the application's root service provider. If <see langword="false" />
(default) this will be a reference to a scoped service provider that has the same
Expand Down
8 changes: 4 additions & 4 deletions xml/Microsoft.Extensions.Logging/ConsoleLoggerExtensions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@
</Parameters>
<Docs>
<param name="factory">The <see cref="T:Microsoft.Extensions.Logging.ILoggerFactory" /> to use.</param>
<param name="includeScopes">A value which indicates whether log scope information should be displayed
<param name="includeScopes">A value which indicates whether log scope information should be displayed
in the output.</param>
<summary>Adds a console logger that is enabled for <see cref="T:Microsoft.Extensions.Logging.LogLevel" />.Information or higher.</summary>
<returns>This method is retained only for compatibility.</returns>
Expand Down Expand Up @@ -358,7 +358,7 @@
<Docs>
<param name="factory">The <see cref="T:Microsoft.Extensions.Logging.ILoggerFactory" /> to use.</param>
<param name="minLevel">The minimum <see cref="T:Microsoft.Extensions.Logging.LogLevel" /> to be logged.</param>
<param name="includeScopes">A value which indicates whether log scope information should be displayed
<param name="includeScopes">A value which indicates whether log scope information should be displayed
in the output.</param>
<summary>Adds a console logger that is enabled for <see cref="T:Microsoft.Extensions.Logging.LogLevel" />s of minLevel or higher.</summary>
<returns>This method is retained only for compatibility.</returns>
Expand Down Expand Up @@ -399,7 +399,7 @@
<Docs>
<param name="factory">The <see cref="T:Microsoft.Extensions.Logging.ILoggerFactory" /> to use.</param>
<param name="filter">The category filter to apply to logs.</param>
<param name="includeScopes">A value which indicates whether log scope information should be displayed
<param name="includeScopes">A value which indicates whether log scope information should be displayed
in the output.</param>
<summary>Adds a console logger that is enabled as defined by the filter function.</summary>
<returns>This method is retained only for compatibility.</returns>
Expand Down Expand Up @@ -542,7 +542,7 @@
<typeparam name="TFormatter">The custom console logger formatter.</typeparam>
<typeparam name="TOptions">The configuration options.</typeparam>
<param name="builder">The current logging builder instance to use.</param>
<param name="configure">A delegate to configure <paramref name="TOptions" /> for the custom formatter <paramref name="TFormatter" />.</param>
<param name="configure">A delegate to configure <typeparamref name="TOptions" /> for the custom formatter <typeparamref name="TFormatter" />.</param>
<summary>Adds a custom console logger formatter to be configured with the specified options.</summary>
<returns>The current logging builder instance so that additional calls can be chained.</returns>
<remarks>To be added.</remarks>
Expand Down
4 changes: 2 additions & 2 deletions xml/Microsoft.Extensions.Primitives/StringSegmentComparer.xml
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,8 @@ The value returned by this method can have the following meanings:
<Parameter Name="y" Type="Microsoft.Extensions.Primitives.StringSegment" />
</Parameters>
<Docs>
<param name="x">The first object of type <paramref name="T" /> to compare.</param>
<param name="y">The second object of type <paramref name="T" /> to compare.</param>
<param name="x">The first object of type <typeparamref name="T" /> to compare.</param>
<param name="y">The second object of type <typeparamref name="T" /> to compare.</param>
<summary>Determines whether the specified objects are equal.</summary>
<returns>
<see langword="true" /> if the specified objects are equal; otherwise, <see langword="false" />.</returns>
Expand Down
Loading

0 comments on commit 942944e

Please sign in to comment.