Skip to content

Commit

Permalink
Update ImageSharpMiddlewareOptions.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
JimBobSquarePants committed Sep 3, 2020
1 parent f09d020 commit a411d0e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/ImageSharp.Web/Middleware/ImageSharpMiddlewareOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
// Licensed under the Apache License, Version 2.0.

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

Expand Down

0 comments on commit a411d0e

Please sign in to comment.