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: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,9 +20,9 @@ to address the complexities of web service consumption.
20
20
mechanisms to fit specific application needs.
21
21
22
22
-**Dynamic Request Customization:**
23
-
Offers the capability to define headers and properties scoped to specific request blocks, allowing for temporary changes that do not affect the global configuration.
24
-
Scoped headers and properties ensure that modifications are contextually isolated, enhancing maintainability and reducing the risk of configuration errors during
25
-
runtime.
23
+
Offers the capability to define request headers and properties scoped to specific request blocks, allowing for temporary changes that do not affect the global
24
+
configuration. Scoped headers and properties ensure that modifications are contextually isolated, enhancing maintainability and reducing the risk of configuration
25
+
errors during runtime.
26
26
27
27
-**Custom Error Handling and Exception Management:**
28
28
Converts HTTP response errors into detailed, meaningful exceptions, streamlining the process of interpreting API-specific errors with the aid of a customizable
Copy file name to clipboardExpand all lines: src/Kampute.HttpClient.DataContract/Kampute.HttpClient.DataContract.csproj
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@
5
5
<Title>Kampute.HttpClient.DataContract</Title>
6
6
<Description>This package is an extension package for Kampute.HttpClient, enhancing it to manage application/xml content types, using DataContractSerializer for serialization and deserialization of XML responses and payloads.</Description>
Copy file name to clipboardExpand all lines: src/Kampute.HttpClient.Json/Kampute.HttpClient.Json.csproj
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@
5
5
<Title>Kampute.HttpClient.Json</Title>
6
6
<Description>This package is an extension package for Kampute.HttpClient, enhancing it to manage application/json content types, using System.Text.Json library for serialization and deserialization of JSON responses and payloads.</Description>
Copy file name to clipboardExpand all lines: src/Kampute.HttpClient.NewtonsoftJson/Kampute.HttpClient.NewtonsoftJson.csproj
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@
5
5
<Title>Kampute.HttpClient.NewtonsoftJson</Title>
6
6
<Description>This package is an extension package for Kampute.HttpClient, enhancing it to manage application/json content types, using Newtonsoft.Json library for serialization and deserialization of JSON responses and payloads.</Description>
Copy file name to clipboardExpand all lines: src/Kampute.HttpClient.Xml/Kampute.HttpClient.Xml.csproj
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@
5
5
<Title>Kampute.HttpClient.Xml</Title>
6
6
<Description>This package is an extension package for Kampute.HttpClient, enhancing it to manage application/xml content types, using XmlSerializer for serialization and deserialization of XML responses and payloads.</Description>
/// Gets the number of <see cref="IHttpContentDeserializer"/> instances contained in the collection.
@@ -66,11 +64,7 @@ public sealed class HttpContentDeserializerCollection : ICollection<IHttpContent
66
64
/// <returns>An instance of <see cref="IHttpContentDeserializer"/> that can deserialize the specified media type and model type, or <c>null</c> if none is found.</returns>
/// Locates the first <see cref="IHttpContentDeserializer"/> instances in the collection that support deserializing a specific media type and model type.
234
228
/// </summary>
235
-
privatevoidInvalidateCaches()
229
+
/// <param name="mediaType">The media type to deserialize.</param>
230
+
/// <param name="modelType">The type of the model to deserialize.</param>
231
+
/// <returns>An instance of <see cref="IHttpContentDeserializer"/> that can deserialize the specified media type and model type, or <c>null</c> if none is found.</returns>
0 commit comments