diff --git a/xml/Microsoft.Extensions.Http.Logging/LoggingHttpMessageHandler.xml b/xml/Microsoft.Extensions.Http.Logging/LoggingHttpMessageHandler.xml
index ac4ab1b878a..f296cebea7a 100644
--- a/xml/Microsoft.Extensions.Http.Logging/LoggingHttpMessageHandler.xml
+++ b/xml/Microsoft.Extensions.Http.Logging/LoggingHttpMessageHandler.xml
@@ -19,7 +19,7 @@
- To be added.
+ Handles logging of the lifecycle for an HTTP request.
To be added.
@@ -44,9 +44,11 @@
- To be added.
- To be added.
+ The to log to.
+ Initializes a new instance of the class with a specified logger.
To be added.
+
+ is .
@@ -67,10 +69,12 @@
- To be added.
- To be added.
- To be added.
+ The to log to.
+ The used to configure the instance.
+ Initializes a new instance of the class with a specified logger and options.
To be added.
+
+ or is .
@@ -108,7 +112,16 @@
To be added.
To be added.
To be added.
- To be added.
+
+ .
+
+ ]]>
+
+
diff --git a/xml/Microsoft.Extensions.Http.Logging/LoggingScopeHttpMessageHandler.xml b/xml/Microsoft.Extensions.Http.Logging/LoggingScopeHttpMessageHandler.xml
index 1fc1e3c714a..807df72583a 100644
--- a/xml/Microsoft.Extensions.Http.Logging/LoggingScopeHttpMessageHandler.xml
+++ b/xml/Microsoft.Extensions.Http.Logging/LoggingScopeHttpMessageHandler.xml
@@ -19,7 +19,7 @@
- To be added.
+ Handles logging of the lifecycle for an HTTP request within a log scope.
To be added.
@@ -44,9 +44,11 @@
- To be added.
- To be added.
+ The to log to.
+ Initializes a new instance of the class with a specified logger.
To be added.
+
+ is .
@@ -67,10 +69,12 @@
- To be added.
- To be added.
- To be added.
+ The to log to.
+ The used to configure the instance.
+ Initializes a new instance of the class with a specified logger and options.
To be added.
+
+ or is .
@@ -108,7 +112,16 @@
To be added.
To be added.
To be added.
- To be added.
+
+ .
+
+ ]]>
+
+
diff --git a/xml/Microsoft.Extensions.Http/HttpMessageHandlerBuilder.xml b/xml/Microsoft.Extensions.Http/HttpMessageHandlerBuilder.xml
index a6678a57eb1..db002c1235c 100644
--- a/xml/Microsoft.Extensions.Http/HttpMessageHandlerBuilder.xml
+++ b/xml/Microsoft.Extensions.Http/HttpMessageHandlerBuilder.xml
@@ -129,11 +129,20 @@
- To be added.
- To be added.
- To be added.
- To be added.
+ An instance of to operate at the bottom of the handler chain and actually handle the HTTP transport operations.
+ An ordered list of instances to be invoked as part of sending an and receiving an .
+ The handlers are invoked in a top-down fashion. That is, the first entry is invoked first for an outbound request message but last for an inbound response message.
+ Constructs an instance of by chaining one after another with in the end of the chain. The resulting pipeline is used by infrastructure to create instances with customized message handlers. The resulting pipeline can also be accessed by using instead of .
+ The HTTP message handler chain.
To be added.
+
+ or is .
+
+ contains a entry.
+
+-or-
+
+DelegatingHandler.InnerHandler is not . DelegatingHandler instances provided to HttpMessageHandlerBuilder must not be reused or cached.
diff --git a/xml/Microsoft.Extensions.Http/IHttpMessageHandlerBuilderFilter.xml b/xml/Microsoft.Extensions.Http/IHttpMessageHandlerBuilderFilter.xml
index 1c3613c2a03..91af4c3c82e 100644
--- a/xml/Microsoft.Extensions.Http/IHttpMessageHandlerBuilderFilter.xml
+++ b/xml/Microsoft.Extensions.Http/IHttpMessageHandlerBuilderFilter.xml
@@ -47,7 +47,7 @@
A delegate which will run the next .
Applies additional initialization to the .
- To be added.
+ The configured .
To be added.