|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Text;
using Microsoft.Net.Http.Headers;
namespace Microsoft.AspNetCore.WebUtilities;
/// <summary>
/// Various extension methods for dealing with the section body stream
/// </summary>
public static class MultipartSectionStreamExtensions
{
/// <summary>
/// Reads the body of the section as a string
/// </summary>
/// <param name="section">The section to read from</param>
/// <returns>The body steam as string</returns>
public static Task<string> ReadAsStringAsync(this MultipartSection section)
=> section.ReadAsStringAsync(CancellationToken.None).AsTask();
/// <summary>
/// Reads the body of the section as a string
/// </summary>
/// <param name="section">The section to read from</param>
/// <param name="cancellationToken">The cancellationt token.</param>
/// <returns>The body steam as string</returns>
public static async ValueTask<string> ReadAsStringAsync(this MultipartSection section, CancellationToken cancellationToken)
{
ArgumentNullException.ThrowIfNull(section);
if (section.Body is null)
{
throw new ArgumentException("Multipart section must have a body to be read.", nameof(section));
}
_ = MediaTypeHeaderValue.TryParse(section.ContentType, out var sectionMediaType);
var streamEncoding = sectionMediaType?.Encoding;
// https://learn.microsoft.com/dotnet/core/compatibility/syslib-warnings/syslib0001
if (streamEncoding == null || streamEncoding.CodePage == 65000)
{
streamEncoding = Encoding.UTF8;
}
using var reader = new StreamReader(
section.Body,
streamEncoding,
detectEncodingFromByteOrderMarks: true,
bufferSize: 1024,
leaveOpen: true);
return await reader.ReadToEndAsync(cancellationToken);
}
}
|