1 <?xml version="1.0"?>
\r
4 <name>Microsoft.AspNetCore.Mvc.DataAnnotations</name>
\r
7 <member name="T:Microsoft.AspNetCore.Mvc.DataAnnotations.AttributeAdapterBase`1">
\r
9 An abstract subclass of <see cref="T:Microsoft.AspNetCore.Mvc.DataAnnotations.ValidationAttributeAdapter`1"/> which wraps up all the required
\r
10 interfaces for the adapters.
\r
12 <typeparam name="TAttribute">The type of <see cref="T:System.ComponentModel.DataAnnotations.ValidationAttribute"/> which is being wrapped.</typeparam>
\r
14 <member name="M:Microsoft.AspNetCore.Mvc.DataAnnotations.AttributeAdapterBase`1.#ctor(`0,Microsoft.Extensions.Localization.IStringLocalizer)">
\r
16 Instantiates a new <see cref="T:Microsoft.AspNetCore.Mvc.DataAnnotations.AttributeAdapterBase`1"/>.
\r
18 <param name="attribute">The <see cref="T:System.ComponentModel.DataAnnotations.ValidationAttribute"/> being wrapped.</param>
\r
19 <param name="stringLocalizer">The <see cref="T:Microsoft.Extensions.Localization.IStringLocalizer"/> to be used in error generation.</param>
\r
21 <member name="M:Microsoft.AspNetCore.Mvc.DataAnnotations.AttributeAdapterBase`1.GetErrorMessage(Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ModelValidationContextBase)">
\r
24 <member name="M:Microsoft.AspNetCore.Mvc.DataAnnotations.CompareAttributeAdapter.GetErrorMessage(Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ModelValidationContextBase)">
\r
27 <member name="T:Microsoft.AspNetCore.Mvc.DataAnnotations.DataAnnotationsClientModelValidatorProvider">
\r
29 An implementation of <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.IClientModelValidatorProvider"/> which provides client validators
\r
30 for attributes which derive from <see cref="T:System.ComponentModel.DataAnnotations.ValidationAttribute"/>. It also provides
\r
31 a validator for types which implement <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.IClientModelValidator"/>.
\r
32 The logic to support <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.IClientModelValidator"/>
\r
33 is implemented in <see cref="T:Microsoft.AspNetCore.Mvc.DataAnnotations.ValidationAttributeAdapter`1"/>.
\r
36 <member name="M:Microsoft.AspNetCore.Mvc.DataAnnotations.DataAnnotationsClientModelValidatorProvider.#ctor(Microsoft.AspNetCore.Mvc.DataAnnotations.IValidationAttributeAdapterProvider,Microsoft.Extensions.Options.IOptions{Microsoft.AspNetCore.Mvc.DataAnnotations.MvcDataAnnotationsLocalizationOptions},Microsoft.Extensions.Localization.IStringLocalizerFactory)">
\r
38 Create a new instance of <see cref="T:Microsoft.AspNetCore.Mvc.DataAnnotations.DataAnnotationsClientModelValidatorProvider"/>.
\r
40 <param name="validationAttributeAdapterProvider">The <see cref="T:Microsoft.AspNetCore.Mvc.DataAnnotations.IValidationAttributeAdapterProvider"/>
\r
41 that supplies <see cref="T:Microsoft.AspNetCore.Mvc.DataAnnotations.IAttributeAdapter"/>s.</param>
\r
42 <param name="options">The <see cref="T:Microsoft.Extensions.Options.IOptions`1"/>.</param>
\r
43 <param name="stringLocalizerFactory">The <see cref="T:Microsoft.Extensions.Localization.IStringLocalizerFactory"/>.</param>
\r
45 <member name="M:Microsoft.AspNetCore.Mvc.DataAnnotations.DataAnnotationsClientModelValidatorProvider.CreateValidators(Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ClientValidatorProviderContext)">
\r
48 <member name="T:Microsoft.AspNetCore.Mvc.DataAnnotations.DataAnnotationsMetadataProvider">
\r
50 An implementation of <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.IBindingMetadataProvider"/> and <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.IDisplayMetadataProvider"/> for
\r
51 the System.ComponentModel.DataAnnotations attribute classes.
\r
54 <member name="M:Microsoft.AspNetCore.Mvc.DataAnnotations.DataAnnotationsMetadataProvider.CreateBindingMetadata(Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.BindingMetadataProviderContext)">
\r
57 <member name="M:Microsoft.AspNetCore.Mvc.DataAnnotations.DataAnnotationsMetadataProvider.CreateDisplayMetadata(Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.DisplayMetadataProviderContext)">
\r
60 <member name="M:Microsoft.AspNetCore.Mvc.DataAnnotations.DataAnnotationsMetadataProvider.CreateValidationMetadata(Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ValidationMetadataProviderContext)">
\r
63 <member name="T:Microsoft.AspNetCore.Mvc.DataAnnotations.DataAnnotationsModelValidator">
\r
65 Validates based on the given <see cref="T:System.ComponentModel.DataAnnotations.ValidationAttribute"/>.
\r
68 <member name="M:Microsoft.AspNetCore.Mvc.DataAnnotations.DataAnnotationsModelValidator.#ctor(Microsoft.AspNetCore.Mvc.DataAnnotations.IValidationAttributeAdapterProvider,System.ComponentModel.DataAnnotations.ValidationAttribute,Microsoft.Extensions.Localization.IStringLocalizer)">
\r
70 Create a new instance of <see cref="T:Microsoft.AspNetCore.Mvc.DataAnnotations.DataAnnotationsModelValidator"/>.
\r
72 <param name="attribute">The <see cref="T:System.ComponentModel.DataAnnotations.ValidationAttribute"/> that defines what we're validating.</param>
\r
73 <param name="stringLocalizer">The <see cref="T:Microsoft.Extensions.Localization.IStringLocalizer"/> used to create messages.</param>
\r
74 <param name="validationAttributeAdapterProvider">The <see cref="T:Microsoft.AspNetCore.Mvc.DataAnnotations.IValidationAttributeAdapterProvider"/>
\r
75 which <see cref="T:Microsoft.AspNetCore.Mvc.DataAnnotations.ValidationAttributeAdapter`1"/>'s will be created from.</param>
\r
77 <member name="P:Microsoft.AspNetCore.Mvc.DataAnnotations.DataAnnotationsModelValidator.Attribute">
\r
79 The attribute being validated against.
\r
82 <member name="M:Microsoft.AspNetCore.Mvc.DataAnnotations.DataAnnotationsModelValidator.Validate(Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ModelValidationContext)">
\r
84 Validates the context against the <see cref="T:System.ComponentModel.DataAnnotations.ValidationAttribute"/>.
\r
86 <param name="validationContext">The context being validated.</param>
\r
87 <returns>An enumerable of the validation results.</returns>
\r
89 <member name="T:Microsoft.AspNetCore.Mvc.DataAnnotations.DataAnnotationsModelValidatorProvider">
\r
91 An implementation of <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.IModelValidatorProvider"/> which provides validators
\r
92 for attributes which derive from <see cref="T:System.ComponentModel.DataAnnotations.ValidationAttribute"/>. It also provides
\r
93 a validator for types which implement <see cref="T:System.ComponentModel.DataAnnotations.IValidatableObject"/>.
\r
96 <member name="M:Microsoft.AspNetCore.Mvc.DataAnnotations.DataAnnotationsModelValidatorProvider.#ctor(Microsoft.AspNetCore.Mvc.DataAnnotations.IValidationAttributeAdapterProvider,Microsoft.Extensions.Options.IOptions{Microsoft.AspNetCore.Mvc.DataAnnotations.MvcDataAnnotationsLocalizationOptions},Microsoft.Extensions.Localization.IStringLocalizerFactory)">
\r
98 Create a new instance of <see cref="T:Microsoft.AspNetCore.Mvc.DataAnnotations.DataAnnotationsModelValidatorProvider"/>.
\r
100 <param name="validationAttributeAdapterProvider">The <see cref="T:Microsoft.AspNetCore.Mvc.DataAnnotations.IValidationAttributeAdapterProvider"/>
\r
101 that supplies <see cref="T:Microsoft.AspNetCore.Mvc.DataAnnotations.IAttributeAdapter"/>s.</param>
\r
102 <param name="options">The <see cref="T:Microsoft.Extensions.Options.IOptions`1"/>.</param>
\r
103 <param name="stringLocalizerFactory">The <see cref="T:Microsoft.Extensions.Localization.IStringLocalizerFactory"/>.</param>
\r
104 <remarks><paramref name="options"/> and <paramref name="stringLocalizerFactory"/>
\r
105 are nullable only for testing ease.</remarks>
\r
107 <member name="T:Microsoft.AspNetCore.Mvc.DataAnnotations.DataTypeAttributeAdapter">
\r
109 A validation adapter that is used to map <see cref="T:System.ComponentModel.DataAnnotations.DataTypeAttribute"/>'s to a single client side validation
\r
113 <member name="M:Microsoft.AspNetCore.Mvc.DataAnnotations.DataTypeAttributeAdapter.GetErrorMessage(Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ModelValidationContextBase)">
\r
116 <member name="T:Microsoft.AspNetCore.Mvc.DataAnnotations.DefaultClientModelValidatorProvider">
\r
118 A default implementation of <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.IClientModelValidatorProvider"/>.
\r
121 The <see cref="T:Microsoft.AspNetCore.Mvc.DataAnnotations.DefaultClientModelValidatorProvider"/> provides validators from
\r
122 <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.IClientModelValidator"/> instances in <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.ValidatorMetadata"/>.
\r
125 <member name="M:Microsoft.AspNetCore.Mvc.DataAnnotations.DefaultClientModelValidatorProvider.CreateValidators(Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ClientValidatorProviderContext)">
\r
128 <member name="M:Microsoft.AspNetCore.Mvc.DataAnnotations.FileExtensionsAttributeAdapter.AddValidation(Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ClientModelValidationContext)">
\r
131 <member name="M:Microsoft.AspNetCore.Mvc.DataAnnotations.FileExtensionsAttributeAdapter.GetErrorMessage(Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ModelValidationContextBase)">
\r
134 <member name="T:Microsoft.AspNetCore.Mvc.DataAnnotations.IAttributeAdapter">
\r
136 Interface so that adapters provide their relevant values to error messages.
\r
139 <member name="M:Microsoft.AspNetCore.Mvc.DataAnnotations.IAttributeAdapter.GetErrorMessage(Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ModelValidationContextBase)">
\r
141 Gets the error message.
\r
143 <param name="validationContext">The context to use in message creation.</param>
\r
144 <returns>The localized error message.</returns>
\r
146 <member name="T:Microsoft.AspNetCore.Mvc.DataAnnotations.IValidationAttributeAdapterProvider">
\r
148 Provider for supplying <see cref="T:Microsoft.AspNetCore.Mvc.DataAnnotations.IAttributeAdapter"/>'s.
\r
151 <member name="M:Microsoft.AspNetCore.Mvc.DataAnnotations.IValidationAttributeAdapterProvider.GetAttributeAdapter(System.ComponentModel.DataAnnotations.ValidationAttribute,Microsoft.Extensions.Localization.IStringLocalizer)">
\r
153 Returns the <see cref="T:Microsoft.AspNetCore.Mvc.DataAnnotations.IAttributeAdapter"/> for the given <see cref="T:System.ComponentModel.DataAnnotations.ValidationAttribute"/>.
\r
155 <param name="attribute">The <see cref="T:System.ComponentModel.DataAnnotations.ValidationAttribute"/> to create an <see cref="T:Microsoft.AspNetCore.Mvc.DataAnnotations.IAttributeAdapter"/>
\r
157 <param name="stringLocalizer">The <see cref="T:Microsoft.Extensions.Localization.IStringLocalizer"/> which will be used to create messages.
\r
159 <returns>An <see cref="T:Microsoft.AspNetCore.Mvc.DataAnnotations.IAttributeAdapter"/> for the given <paramref name="attribute"/>.</returns>
\r
161 <member name="M:Microsoft.AspNetCore.Mvc.DataAnnotations.MaxLengthAttributeAdapter.GetErrorMessage(Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ModelValidationContextBase)">
\r
164 <member name="M:Microsoft.AspNetCore.Mvc.DataAnnotations.MinLengthAttributeAdapter.GetErrorMessage(Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ModelValidationContextBase)">
\r
167 <member name="T:Microsoft.AspNetCore.Mvc.DataAnnotations.MvcDataAnnotationsLocalizationOptions">
\r
169 Provides programmatic configuration for DataAnnotations localization in the MVC framework.
\r
172 <member name="F:Microsoft.AspNetCore.Mvc.DataAnnotations.MvcDataAnnotationsLocalizationOptions.DataAnnotationLocalizerProvider">
\r
174 The delegate to invoke for creating <see cref="T:Microsoft.Extensions.Localization.IStringLocalizer"/>.
\r
177 <member name="T:Microsoft.AspNetCore.Mvc.DataAnnotations.NumericClientModelValidator">
\r
179 An implementation of <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.IClientModelValidator"/> that provides the rule for validating
\r
183 <member name="M:Microsoft.AspNetCore.Mvc.DataAnnotations.NumericClientModelValidator.AddValidation(Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ClientModelValidationContext)">
\r
186 <member name="T:Microsoft.AspNetCore.Mvc.DataAnnotations.NumericClientModelValidatorProvider">
\r
188 An implementation of <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.IClientModelValidatorProvider"/> which provides client validators
\r
189 for specific numeric types.
\r
192 <member name="M:Microsoft.AspNetCore.Mvc.DataAnnotations.NumericClientModelValidatorProvider.CreateValidators(Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ClientValidatorProviderContext)">
\r
195 <member name="M:Microsoft.AspNetCore.Mvc.DataAnnotations.RangeAttributeAdapter.GetErrorMessage(Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ModelValidationContextBase)">
\r
198 <member name="M:Microsoft.AspNetCore.Mvc.DataAnnotations.RegularExpressionAttributeAdapter.GetErrorMessage(Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ModelValidationContextBase)">
\r
201 <member name="T:Microsoft.AspNetCore.Mvc.DataAnnotations.RequiredAttributeAdapter">
\r
203 <see cref="T:Microsoft.AspNetCore.Mvc.DataAnnotations.AttributeAdapterBase`1"/> for <see cref="T:System.ComponentModel.DataAnnotations.RequiredAttribute"/>.
\r
206 <member name="M:Microsoft.AspNetCore.Mvc.DataAnnotations.RequiredAttributeAdapter.#ctor(System.ComponentModel.DataAnnotations.RequiredAttribute,Microsoft.Extensions.Localization.IStringLocalizer)">
\r
208 Initializes a new instance of <see cref="T:Microsoft.AspNetCore.Mvc.DataAnnotations.RequiredAttributeAdapter"/>.
\r
210 <param name="attribute">The <see cref="T:System.ComponentModel.DataAnnotations.RequiredAttribute"/>.</param>
\r
211 <param name="stringLocalizer">The <see cref="T:Microsoft.Extensions.Localization.IStringLocalizer"/>.</param>
\r
213 <member name="M:Microsoft.AspNetCore.Mvc.DataAnnotations.RequiredAttributeAdapter.AddValidation(Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ClientModelValidationContext)">
\r
216 <member name="M:Microsoft.AspNetCore.Mvc.DataAnnotations.RequiredAttributeAdapter.GetErrorMessage(Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ModelValidationContextBase)">
\r
219 <member name="M:Microsoft.AspNetCore.Mvc.DataAnnotations.StringLengthAttributeAdapter.AddValidation(Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ClientModelValidationContext)">
\r
222 <member name="M:Microsoft.AspNetCore.Mvc.DataAnnotations.StringLengthAttributeAdapter.GetErrorMessage(Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ModelValidationContextBase)">
\r
225 <member name="T:Microsoft.AspNetCore.Mvc.DataAnnotations.ValidationAttributeAdapter`1">
\r
227 An implementation of <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.IClientModelValidator"/> which understands data annotation attributes.
\r
229 <typeparam name="TAttribute">The type of the attribute.</typeparam>
\r
231 <member name="M:Microsoft.AspNetCore.Mvc.DataAnnotations.ValidationAttributeAdapter`1.#ctor(`0,Microsoft.Extensions.Localization.IStringLocalizer)">
\r
233 Create a new instance of <see cref="T:Microsoft.AspNetCore.Mvc.DataAnnotations.ValidationAttributeAdapter`1"/>.
\r
235 <param name="attribute">The <typeparamref name="TAttribute"/> instance to validate.</param>
\r
236 <param name="stringLocalizer">The <see cref="T:Microsoft.Extensions.Localization.IStringLocalizer"/>.</param>
\r
238 <member name="P:Microsoft.AspNetCore.Mvc.DataAnnotations.ValidationAttributeAdapter`1.Attribute">
\r
240 Gets the <typeparamref name="TAttribute"/> instance.
\r
243 <member name="M:Microsoft.AspNetCore.Mvc.DataAnnotations.ValidationAttributeAdapter`1.AddValidation(Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ClientModelValidationContext)">
\r
246 <member name="M:Microsoft.AspNetCore.Mvc.DataAnnotations.ValidationAttributeAdapter`1.MergeAttribute(System.Collections.Generic.IDictionary{System.String,System.String},System.String,System.String)">
\r
248 Adds the given <paramref name="key"/> and <paramref name="value"/> into
\r
249 <paramref name="attributes"/> if <paramref name="attributes"/> does not contain a value for
\r
250 <paramref name="key"/>.
\r
252 <param name="attributes">The HTML attributes dictionary.</param>
\r
253 <param name="key">The attribute key.</param>
\r
254 <param name="value">The attribute value.</param>
\r
255 <returns><c>true</c> if an attribute was added, otherwise <c>false</c>.</returns>
\r
257 <member name="M:Microsoft.AspNetCore.Mvc.DataAnnotations.ValidationAttributeAdapter`1.GetErrorMessage(Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata,System.Object[])">
\r
259 Gets the error message formatted using the <see cref="P:Microsoft.AspNetCore.Mvc.DataAnnotations.ValidationAttributeAdapter`1.Attribute"/>.
\r
261 <param name="modelMetadata">The <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata"/> associated with the model annotated with
\r
262 <see cref="P:Microsoft.AspNetCore.Mvc.DataAnnotations.ValidationAttributeAdapter`1.Attribute"/>.</param>
\r
263 <param name="arguments">The value arguments which will be used in constructing the error message.</param>
\r
264 <returns>Formatted error string.</returns>
\r
266 <member name="T:Microsoft.AspNetCore.Mvc.DataAnnotations.ValidationAttributeAdapterProvider">
\r
268 Creates an <see cref="T:Microsoft.AspNetCore.Mvc.DataAnnotations.IAttributeAdapter"/> for the given attribute.
\r
271 <member name="M:Microsoft.AspNetCore.Mvc.DataAnnotations.ValidationAttributeAdapterProvider.GetAttributeAdapter(System.ComponentModel.DataAnnotations.ValidationAttribute,Microsoft.Extensions.Localization.IStringLocalizer)">
\r
273 Creates an <see cref="T:Microsoft.AspNetCore.Mvc.DataAnnotations.IAttributeAdapter"/> for the given attribute.
\r
275 <param name="attribute">The attribute to create an adapter for.</param>
\r
276 <param name="stringLocalizer">The localizer to provide to the adapter.</param>
\r
277 <returns>An <see cref="T:Microsoft.AspNetCore.Mvc.DataAnnotations.IAttributeAdapter"/> for the given attribute.</returns>
\r
279 <member name="T:Microsoft.AspNetCore.Mvc.DataAnnotations.ValidationProviderAttribute">
\r
281 Abstract class for grouping attributes of type <see cref="T:System.ComponentModel.DataAnnotations.ValidationAttribute"/> into
\r
282 one <see cref="T:System.Attribute"/>
\r
285 <member name="M:Microsoft.AspNetCore.Mvc.DataAnnotations.ValidationProviderAttribute.GetValidationAttributes">
\r
287 Gets <see cref="T:System.ComponentModel.DataAnnotations.ValidationAttribute" /> instances associated with this attribute.
\r
289 <returns>Sequence of <see cref="T:System.ComponentModel.DataAnnotations.ValidationAttribute" /> associated with this attribute.</returns>
\r
291 <member name="P:Microsoft.AspNetCore.Mvc.DataAnnotations.Resources.ValidatableObjectAdapter_IncompatibleType">
\r
292 <summary>The model object inside the metadata claimed to be compatible with '{0}', but was actually '{1}'.</summary>
\r
294 <member name="M:Microsoft.AspNetCore.Mvc.DataAnnotations.Resources.FormatValidatableObjectAdapter_IncompatibleType(System.Object,System.Object)">
\r
295 <summary>The model object inside the metadata claimed to be compatible with '{0}', but was actually '{1}'.</summary>
\r
297 <member name="P:Microsoft.AspNetCore.Mvc.DataAnnotations.Resources.ArgumentCannotBeNullOrEmpty">
\r
298 <summary>Value cannot be null or empty.</summary>
\r
300 <member name="P:Microsoft.AspNetCore.Mvc.DataAnnotations.Resources.PropertyOfTypeCannotBeNull">
\r
301 <summary>The '{0}' property of '{1}' must not be null.</summary>
\r
303 <member name="M:Microsoft.AspNetCore.Mvc.DataAnnotations.Resources.FormatPropertyOfTypeCannotBeNull(System.Object,System.Object)">
\r
304 <summary>The '{0}' property of '{1}' must not be null.</summary>
\r
306 <member name="T:Microsoft.AspNetCore.Mvc.HiddenInputAttribute">
\r
308 Indicates associated property or all properties with the associated type should be edited using an
\r
309 <input> element of type "hidden".
\r
312 When overriding a <see cref="T:Microsoft.AspNetCore.Mvc.HiddenInputAttribute"/> inherited from a base class, should apply both
\r
313 <c>[HiddenInput(DisplayValue = true)]</c> (if the inherited attribute had <c>DisplayValue = false</c>) and a
\r
314 <see cref="T:System.ComponentModel.DataAnnotations.UIHintAttribute"/> with some value other than "HiddenInput".
\r
317 <member name="M:Microsoft.AspNetCore.Mvc.HiddenInputAttribute.#ctor">
\r
319 Instantiates a new instance of the <see cref="T:Microsoft.AspNetCore.Mvc.HiddenInputAttribute"/> class.
\r
322 <member name="P:Microsoft.AspNetCore.Mvc.HiddenInputAttribute.DisplayValue">
\r
324 Gets or sets a value indicating whether to display the value as well as provide a hidden <input>
\r
325 element. The default value is <c>true</c>.
\r
328 If <c>false</c>, also causes the default <see cref="T:System.Object"/> display and editor templates to return HTML
\r
329 lacking the usual per-property <div> wrapper around the associated property and the default display
\r
330 "HiddenInput" template to return <c>string.Empty</c> for the associated property. Thus the default
\r
331 <see cref="T:System.Object"/> display template effectively skips the property and the default <see cref="T:System.Object"/>
\r
332 editor template returns only the hidden <input> element for the property.
\r
335 <member name="T:Microsoft.Extensions.DependencyInjection.MvcDataAnnotationsLocalizationOptionsSetup">
\r
337 Sets up default options for <see cref="T:Microsoft.AspNetCore.Mvc.DataAnnotations.MvcDataAnnotationsLocalizationOptions"/>.
\r
340 <member name="M:Microsoft.Extensions.DependencyInjection.MvcDataAnnotationsLocalizationOptionsSetup.Configure(Microsoft.AspNetCore.Mvc.DataAnnotations.MvcDataAnnotationsLocalizationOptions)">
\r
343 <member name="T:Microsoft.Extensions.DependencyInjection.MvcDataAnnotationsMvcBuilderExtensions">
\r
345 Extension methods for configuring MVC data annotations localization.
\r
348 <member name="M:Microsoft.Extensions.DependencyInjection.MvcDataAnnotationsMvcBuilderExtensions.AddDataAnnotationsLocalization(Microsoft.Extensions.DependencyInjection.IMvcBuilder)">
\r
350 Adds MVC data annotations localization to the application.
\r
352 <param name="builder">The <see cref="T:Microsoft.Extensions.DependencyInjection.IMvcBuilder"/>.</param>
\r
353 <returns>The <see cref="T:Microsoft.Extensions.DependencyInjection.IMvcBuilder"/>.</returns>
\r
355 <member name="M:Microsoft.Extensions.DependencyInjection.MvcDataAnnotationsMvcBuilderExtensions.AddDataAnnotationsLocalization(Microsoft.Extensions.DependencyInjection.IMvcBuilder,System.Action{Microsoft.AspNetCore.Mvc.DataAnnotations.MvcDataAnnotationsLocalizationOptions})">
\r
357 Adds MVC data annotations localization to the application.
\r
359 <param name="builder">The <see cref="T:Microsoft.Extensions.DependencyInjection.IMvcBuilder"/>.</param>
\r
360 <param name="setupAction">The action to configure <see cref="T:Microsoft.AspNetCore.Mvc.DataAnnotations.MvcDataAnnotationsLocalizationOptions"/>.
\r
362 <returns>The <see cref="T:Microsoft.Extensions.DependencyInjection.IMvcBuilder"/>.</returns>
\r
364 <member name="T:Microsoft.Extensions.DependencyInjection.MvcDataAnnotationsMvcCoreBuilderExtensions">
\r
366 Extensions for configuring MVC data annotations using an <see cref="T:Microsoft.Extensions.DependencyInjection.IMvcBuilder"/>.
\r
369 <member name="M:Microsoft.Extensions.DependencyInjection.MvcDataAnnotationsMvcCoreBuilderExtensions.AddDataAnnotations(Microsoft.Extensions.DependencyInjection.IMvcCoreBuilder)">
\r
371 Registers MVC data annotations.
\r
373 <param name="builder">The <see cref="T:Microsoft.Extensions.DependencyInjection.IMvcBuilder"/>.</param>
\r
374 <returns>The <see cref="T:Microsoft.Extensions.DependencyInjection.IMvcBuilder"/>.</returns>
\r
376 <member name="M:Microsoft.Extensions.DependencyInjection.MvcDataAnnotationsMvcCoreBuilderExtensions.AddDataAnnotationsLocalization(Microsoft.Extensions.DependencyInjection.IMvcCoreBuilder)">
\r
378 Adds MVC data annotations localization to the application.
\r
380 <param name="builder">The <see cref="T:Microsoft.Extensions.DependencyInjection.IMvcCoreBuilder"/>.</param>
\r
381 <returns>The <see cref="T:Microsoft.Extensions.DependencyInjection.IMvcCoreBuilder"/>.</returns>
\r
383 <member name="M:Microsoft.Extensions.DependencyInjection.MvcDataAnnotationsMvcCoreBuilderExtensions.AddDataAnnotationsLocalization(Microsoft.Extensions.DependencyInjection.IMvcCoreBuilder,System.Action{Microsoft.AspNetCore.Mvc.DataAnnotations.MvcDataAnnotationsLocalizationOptions})">
\r
385 Registers an action to configure <see cref="T:Microsoft.AspNetCore.Mvc.DataAnnotations.MvcDataAnnotationsLocalizationOptions"/> for MVC data
\r
386 annotations localization.
\r
388 <param name="builder">The <see cref="T:Microsoft.Extensions.DependencyInjection.IMvcBuilder"/>.</param>
\r
389 <param name="setupAction">An <see cref="T:System.Action`1"/>.</param>
\r
390 <returns>The <see cref="T:Microsoft.Extensions.DependencyInjection.IMvcBuilder"/>.</returns>
\r
392 <member name="T:Microsoft.Extensions.DependencyInjection.MvcDataAnnotationsMvcOptionsSetup">
\r
394 Sets up default options for <see cref="T:Microsoft.AspNetCore.Mvc.MvcOptions"/>.
\r