Skip to content

Commit 0fdba62

Browse files
authoredJun 1, 2024
Add extension methods for sending XML content (#23)
1 parent 51637bd commit 0fdba62

File tree

3 files changed

+201
-5
lines changed

3 files changed

+201
-5
lines changed
 

‎src/FluentHttpClient/FluentHttpClient.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<PackageTags>fluent httpclient rest http api web client</PackageTags>
1616
<AssemblyVersion>$(Version)</AssemblyVersion>
1717
<FileVersion>$(Version)</FileVersion>
18-
<Version>4.2.0</Version>
18+
<Version>4.2.1</Version>
1919
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
2020
<GenerateDocumentationFile>true</GenerateDocumentationFile>
2121
<PackageReadmeFile>README.md</PackageReadmeFile>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
using System.Xml;
2+
using System.Xml.Serialization;
3+
4+
namespace FluentHttpClient;
5+
6+
/// <summary>
7+
/// Methods use to serialize objects of specified types into XML documents.
8+
/// </summary>
9+
public static class FluentXmlSerializer
10+
{
11+
/// <summary>
12+
/// The default set of features to support on the XmlWriter object used to serialize an object to an XML document.
13+
/// </summary>
14+
public static readonly XmlWriterSettings DefaultSettings = new()
15+
{
16+
NewLineChars = Environment.NewLine,
17+
ConformanceLevel = ConformanceLevel.Document,
18+
CheckCharacters = true,
19+
Indent = true,
20+
};
21+
22+
/// <summary>
23+
/// The default value used for the Content-Type header for Xml.
24+
/// </summary>
25+
public static readonly string DefaultContentType = "application/xml";
26+
27+
/// <summary>
28+
/// Asynchronously serializes an object of the specified type to an XML document.
29+
/// </summary>
30+
/// <typeparam name="T"></typeparam>
31+
/// <param name="obj"></param>
32+
/// <remarks>Uses the default XmlWriterSettings from <see cref="DefaultSettings"/>.</remarks>
33+
public static async Task<string> SerializeAsync<T>(T obj)
34+
{
35+
return await SerializeAsync(obj, DefaultSettings).ConfigureAwait(false);
36+
}
37+
38+
/// <summary>
39+
/// Asynchronously serializes an object of the specified type to an XML document.
40+
/// </summary>
41+
/// <typeparam name="T"></typeparam>
42+
/// <param name="obj"></param>
43+
/// <param name="settings"></param>
44+
public static async Task<string> SerializeAsync<T>(T obj, XmlWriterSettings settings)
45+
{
46+
var serializer = new XmlSerializer(typeof(T));
47+
48+
using var stream = new MemoryStream();
49+
using var writer = XmlWriter.Create(stream, settings);
50+
51+
await Task.Run(() => serializer.Serialize(writer, obj));
52+
53+
stream.Seek(0, SeekOrigin.Begin);
54+
using var reader = new StreamReader(stream);
55+
return await reader.ReadToEndAsync().ConfigureAwait(false);
56+
}
57+
58+
/// <summary>
59+
/// Serializes an object of the specified type to an XML document.
60+
/// </summary>
61+
/// <typeparam name="T"></typeparam>
62+
/// <param name="obj"></param>
63+
/// <remarks>Uses the default XmlWriterSettings from <see cref="DefaultSettings"/>.</remarks>
64+
public static string Serialize<T>(T obj)
65+
{
66+
return Serialize(obj, DefaultSettings);
67+
}
68+
69+
/// <summary>
70+
/// Serializes an object of the specified type to an XML document.
71+
/// </summary>
72+
/// <typeparam name="T"></typeparam>
73+
/// <param name="obj"></param>
74+
/// <param name="settings"></param>
75+
public static string Serialize<T>(T obj, XmlWriterSettings settings)
76+
{
77+
var serializer = new XmlSerializer(typeof(T));
78+
79+
using var stream = new MemoryStream();
80+
using var writer = XmlWriter.Create(stream, settings);
81+
82+
serializer.Serialize(writer, obj);
83+
84+
stream.Seek(0, SeekOrigin.Begin);
85+
using var reader = new StreamReader(stream);
86+
return reader.ReadToEnd();
87+
}
88+
}

‎src/FluentHttpClient/HttpRequestBuilderExtensions.cs

+112-4
Original file line numberDiff line numberDiff line change
@@ -221,9 +221,9 @@ public static HttpRequestBuilder WithHeaders(this HttpRequestBuilder builder, IE
221221
/// <param name="builder"></param>
222222
/// <param name="content"></param>
223223
/// <returns></returns>
224-
public static HttpRequestBuilder WithJsonContent(this HttpRequestBuilder builder, object content)
224+
public static HttpRequestBuilder WithJsonContent<T>(this HttpRequestBuilder builder, T content)
225225
{
226-
return builder.WithJsonContent(content, FluentHttpClientOptions.DefaultJsonSerializerOptions);
226+
return builder.WithJsonContent<T>(content, FluentHttpClientOptions.DefaultJsonSerializerOptions);
227227
}
228228

229229
/// <summary>
@@ -233,9 +233,9 @@ public static HttpRequestBuilder WithJsonContent(this HttpRequestBuilder builder
233233
/// <param name="content"></param>
234234
/// <param name="options"></param>
235235
/// <returns></returns>
236-
public static HttpRequestBuilder WithJsonContent(this HttpRequestBuilder builder, object content, JsonSerializerOptions options)
236+
public static HttpRequestBuilder WithJsonContent<T>(this HttpRequestBuilder builder, T content, JsonSerializerOptions options)
237237
{
238-
builder.Content = JsonContent.Create(content, options: options);
238+
builder.Content = JsonContent.Create<T>(content, options: options);
239239
return builder;
240240
}
241241

@@ -345,6 +345,114 @@ public static HttpRequestBuilder WithQueryParamIfNotNull(this HttpRequestBuilder
345345
return builder;
346346
}
347347

348+
/// <summary>
349+
/// Creates a new instance of the <see cref="StringContent"/> that contains the specified content serialized to XML using the <see cref="FluentXmlSerializer.DefaultSettings" /> and assigns it to the Content property of the HttpRequestMessage.
350+
/// </summary>
351+
/// <typeparam name="T"></typeparam>
352+
/// <param name="builder"></param>
353+
/// <param name="obj"></param>
354+
/// <returns></returns>
355+
public static HttpRequestBuilder WithXmlContent<T>(this HttpRequestBuilder builder, T obj)
356+
{
357+
return builder.WithXmlContent(obj, FluentXmlSerializer.DefaultSettings.Encoding, FluentXmlSerializer.DefaultContentType);
358+
}
359+
360+
/// <summary>
361+
/// Creates a new instance of the <see cref="StringContent"/> that contains the specified content serialized to XML using the <see cref="FluentXmlSerializer.DefaultSettings" /> and assigns it to the Content property of the HttpRequestMessage.
362+
/// </summary>
363+
/// <typeparam name="T"></typeparam>
364+
/// <param name="builder"></param>
365+
/// <param name="obj"></param>
366+
/// <param name="encoding"></param>
367+
/// <returns></returns>
368+
public static HttpRequestBuilder WithXmlContent<T>(this HttpRequestBuilder builder, T obj, Encoding encoding)
369+
{
370+
return builder.WithXmlContent(obj, encoding, FluentXmlSerializer.DefaultContentType);
371+
}
372+
373+
/// <summary>
374+
/// Creates a new instance of the <see cref="StringContent"/> that contains the specified content serialized to XML using the <see cref="FluentXmlSerializer.DefaultSettings" /> and assigns it to the Content property of the HttpRequestMessage.
375+
/// </summary>
376+
/// <typeparam name="T"></typeparam>
377+
/// <param name="builder"></param>
378+
/// <param name="obj"></param>
379+
/// <param name="contentType"></param>
380+
/// <returns></returns>
381+
public static HttpRequestBuilder WithXmlContent<T>(this HttpRequestBuilder builder, T obj, string contentType)
382+
{
383+
return builder.WithXmlContent(obj, FluentXmlSerializer.DefaultSettings.Encoding, contentType);
384+
}
385+
386+
/// <summary>
387+
/// Creates a new instance of the <see cref="StringContent"/> that contains the specified content serialized to XML using the <see cref="FluentXmlSerializer.DefaultSettings" /> and assigns it to the Content property of the HttpRequestMessage.
388+
/// </summary>
389+
/// <typeparam name="T"></typeparam>
390+
/// <param name="builder"></param>
391+
/// <param name="obj"></param>
392+
/// <param name="encoding"></param>
393+
/// <param name="contentType"></param>
394+
/// <returns></returns>
395+
public static HttpRequestBuilder WithXmlContent<T>(this HttpRequestBuilder builder, T obj, Encoding encoding, string contentType)
396+
{
397+
var settings = FluentXmlSerializer.DefaultSettings;
398+
settings.Encoding = encoding;
399+
400+
var xml = FluentXmlSerializer.Serialize(obj, settings);
401+
return builder.WithXmlContent(xml, encoding, contentType);
402+
}
403+
404+
/// <summary>
405+
/// Creates a new instance of the <see cref="StringContent"/> that contains the specified content and assigns it to the Content property of the HttpRequestMessage.
406+
/// </summary>
407+
/// <param name="builder"></param>
408+
/// <param name="xml"></param>
409+
/// <returns></returns>
410+
public static HttpRequestBuilder WithXmlContent(this HttpRequestBuilder builder, string xml)
411+
{
412+
return builder.WithXmlContent(xml, FluentXmlSerializer.DefaultSettings.Encoding, FluentXmlSerializer.DefaultContentType);
413+
}
414+
415+
/// <summary>
416+
/// Creates a new instance of the <see cref="StringContent"/> that contains the specified content and assigns it to the Content property of the HttpRequestMessage.
417+
/// </summary>
418+
/// <param name="builder"></param>
419+
/// <param name="xml"></param>
420+
/// <param name="encoding"></param>
421+
/// <returns></returns>
422+
public static HttpRequestBuilder WithXmlContent(this HttpRequestBuilder builder, string xml, Encoding encoding)
423+
{
424+
return builder.WithXmlContent(xml, encoding, FluentXmlSerializer.DefaultContentType);
425+
}
426+
427+
/// <summary>
428+
/// Creates a new instance of the <see cref="StringContent"/> that contains the specified content and assigns it to the Content property of the HttpRequestMessage.
429+
/// </summary>
430+
/// <param name="builder"></param>
431+
/// <param name="xml"></param>
432+
/// <param name="contentType"></param>
433+
/// <returns></returns>
434+
public static HttpRequestBuilder WithXmlContent(this HttpRequestBuilder builder, string xml, string contentType)
435+
{
436+
return builder.WithXmlContent(xml, FluentXmlSerializer.DefaultSettings.Encoding, contentType);
437+
}
438+
439+
/// <summary>
440+
/// Creates a new instance of the <see cref="StringContent"/> that contains the specified content and assigns it to the Content property of the HttpRequestMessage.
441+
/// </summary>
442+
/// <param name="builder"></param>
443+
/// <param name="xml"></param>
444+
/// <param name="encoding"></param>
445+
/// <param name="contentType"></param>
446+
/// <returns></returns>
447+
public static HttpRequestBuilder WithXmlContent(this HttpRequestBuilder builder, string xml, Encoding encoding, string contentType)
448+
{
449+
var content = new StringContent(xml, encoding, contentType);
450+
content.Headers.ContentType = new MediaTypeHeaderValue(contentType);
451+
452+
builder.Content = content;
453+
return builder;
454+
}
455+
348456
/// <summary>
349457
/// Send an HTTP DELETE request as an asynchronous operation.
350458
/// </summary>

0 commit comments

Comments
 (0)
Please sign in to comment.