Skip to content

Commit a411d0e

Browse files
Update ImageSharpMiddlewareOptions.cs
1 parent f09d020 commit a411d0e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/ImageSharp.Web/Middleware/ImageSharpMiddlewareOptions.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Licensed under the Apache License, Version 2.0.
33

44
using System;
5+
using System.Globalization;
56
using System.Threading.Tasks;
67
using Microsoft.AspNetCore.Http;
78
using Microsoft.IO;
@@ -61,7 +62,7 @@ public class ImageSharpMiddlewareOptions
6162
/// Gets or sets a value indicating whether to use culture-independent (invariant)
6263
/// conversion when converting commands.
6364
/// If set to <see langword="false"/> the <see cref="CommandParser"/> will use
64-
/// the current thread culture.
65+
/// the <see cref="CultureInfo.CurrentCulture"/>.
6566
/// </summary>
6667
public bool UseInvariantParsingCulture { get; set; } = true;
6768

0 commit comments

Comments
 (0)