Remove Obsolete constructor in RequestLocalizationMiddleware

This commit is contained in:
Kahbazi 2020-05-17 22:42:45 +04:30 committed by Kahbazi
parent c202344d27
commit d16d426efd
No known key found for this signature in database
GPG Key ID: BC038B2B3DE848C0
1 changed files with 0 additions and 13 deletions

View File

@ -36,7 +36,6 @@ namespace Microsoft.AspNetCore.Localization
/// <param name="options">The <see cref="RequestLocalizationOptions"/> representing the options for the
/// <param name="loggerFactory">The <see cref="ILoggerFactory"/> used for logging.</param>
/// <see cref="RequestLocalizationMiddleware"/>.</param>
[ActivatorUtilitiesConstructor]
public RequestLocalizationMiddleware(RequestDelegate next, IOptions<RequestLocalizationOptions> options, ILoggerFactory loggerFactory)
{
if (options == null)
@ -49,18 +48,6 @@ namespace Microsoft.AspNetCore.Localization
_options = options.Value;
}
/// <summary>
/// Creates a new <see cref="RequestLocalizationMiddleware"/>.
/// </summary>
/// <param name="next">The <see cref="RequestDelegate"/> representing the next middleware in the pipeline.</param>
/// <param name="options">The <see cref="RequestLocalizationOptions"/> representing the options for the
/// <see cref="RequestLocalizationMiddleware"/>.</param>
[Obsolete("This constructor is obsolete and will be removed in a future version. Use RequestLocalizationMiddleware(RequestDelegate next, IOptions<RequestLocalizationOptions> options, ILoggerFactory loggerFactory) instead")]
public RequestLocalizationMiddleware(RequestDelegate next, IOptions<RequestLocalizationOptions> options)
: this(next, options, NullLoggerFactory.Instance)
{
}
/// <summary>
/// Invokes the logic of the middleware.
/// </summary>