다음을 통해 공유


ValidationHtmlAttributeProvider.AddValidationAttributes 메서드

정의

클라이언트 유효성 검사를 사용하도록 설정된 경우 유효성 검사 관련 HTML 특성을 attributes 에 추가합니다.

public:
 abstract void AddValidationAttributes(Microsoft::AspNetCore::Mvc::Rendering::ViewContext ^ viewContext, Microsoft::AspNetCore::Mvc::ViewFeatures::ModelExplorer ^ modelExplorer, System::Collections::Generic::IDictionary<System::String ^, System::String ^> ^ attributes);
public abstract void AddValidationAttributes (Microsoft.AspNetCore.Mvc.Rendering.ViewContext viewContext, Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExplorer modelExplorer, System.Collections.Generic.IDictionary<string,string> attributes);
abstract member AddValidationAttributes : Microsoft.AspNetCore.Mvc.Rendering.ViewContext * Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExplorer * System.Collections.Generic.IDictionary<string, string> -> unit
Public MustOverride Sub AddValidationAttributes (viewContext As ViewContext, modelExplorer As ModelExplorer, attributes As IDictionary(Of String, String))

매개 변수

viewContext
ViewContext

ViewContext 현재 scope 대한 instance.

modelExplorer
ModelExplorer

ModelExplorer 식의 입니다.

attributes
IDictionary<String,String>

Dictionary<TKey,TValue> 유효성 검사 특성을 받을 입니다. 유효성 검사 특성 이름을 해당 String 값에 매핑합니다. 값은 HTML 문서 또는 응답에 기록되기 전에 HTML로 인코딩되어야 합니다.

설명

클라이언트 쪽 유효성 검사를 사용하지 attributes 않도록 설정하면 에 아무 것도 추가하지 않습니다.

적용 대상