We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f09d020 commit a411d0eCopy full SHA for a411d0e
src/ImageSharp.Web/Middleware/ImageSharpMiddlewareOptions.cs
@@ -2,6 +2,7 @@
2
// Licensed under the Apache License, Version 2.0.
3
4
using System;
5
+using System.Globalization;
6
using System.Threading.Tasks;
7
using Microsoft.AspNetCore.Http;
8
using Microsoft.IO;
@@ -61,7 +62,7 @@ public class ImageSharpMiddlewareOptions
61
62
/// Gets or sets a value indicating whether to use culture-independent (invariant)
63
/// conversion when converting commands.
64
/// If set to <see langword="false"/> the <see cref="CommandParser"/> will use
- /// the current thread culture.
65
+ /// the <see cref="CultureInfo.CurrentCulture"/>.
66
/// </summary>
67
public bool UseInvariantParsingCulture { get; set; } = true;
68
0 commit comments