25 lines
1.1 KiB
C#
25 lines
1.1 KiB
C#
// Copyright (c) .NET Foundation. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
using Microsoft.Extensions.Localization;
|
|
|
|
namespace Microsoft.AspNetCore.Mvc.DataAnnotations
|
|
{
|
|
/// <summary>
|
|
/// Provider for supplying <see cref="IAttributeAdapter"/>'s.
|
|
/// </summary>
|
|
public interface IValidationAttributeAdapterProvider
|
|
{
|
|
/// <summary>
|
|
/// Returns the <see cref="IAttributeAdapter"/> for the given <see cref=" ValidationAttribute"/>.
|
|
/// </summary>
|
|
/// <param name="attribute">The <see cref="ValidationAttribute"/> to create an <see cref="IAttributeAdapter"/>
|
|
/// for.</param>
|
|
/// <param name="stringLocalizer">The <see cref="IStringLocalizer"/> which will be used to create messages.
|
|
/// </param>
|
|
/// <returns>An <see cref="IAttributeAdapter"/> for the given <paramref name="attribute"/>.</returns>
|
|
IAttributeAdapter GetAttributeAdapter(ValidationAttribute attribute, IStringLocalizer stringLocalizer);
|
|
}
|
|
}
|