1 override of FieldName
Microsoft.AspNetCore.Mvc.Core (1)
ModelBinding\DefaultModelBindingContext.cs (1)
41
public override string
FieldName
13 references to FieldName
Microsoft.AspNetCore.Mvc.Abstractions (1)
ModelBinding\ModelBindingContext.cs (1)
131
/// <param name="fieldName">Name to assign to the <see cref="
FieldName
"/> property.</param>
Microsoft.AspNetCore.Mvc.Core (11)
ModelBinding\Binders\CollectionModelBinder.cs (2)
221
var message = messageProvider.MissingBindRequiredValueAccessor(bindingContext.
FieldName
);
277
fieldName: bindingContext.
FieldName
,
ModelBinding\Binders\ComplexObjectModelBinder.cs (1)
121
var message = messageProvider.MissingBindRequiredValueAccessor(bindingContext.
FieldName
);
ModelBinding\Binders\ComplexTypeModelBinder.cs (1)
186
var message = messageProvider.MissingBindRequiredValueAccessor(bindingContext.
FieldName
);
ModelBinding\Binders\DictionaryModelBinder.cs (1)
180
fieldName: bindingContext.
FieldName
,
ModelBinding\Binders\FormFileModelBinder.cs (1)
61
? bindingContext.BinderModelName ?? bindingContext.
FieldName
ModelBinding\Binders\HeaderModelBinder.cs (3)
56
var headerName = bindingContext.
FieldName
;
84
fieldName: bindingContext.
FieldName
,
124
var headerName = bindingContext.
FieldName
;
ModelBinding\ParameterBinder.cs (2)
185
var modelName = modelBindingContext.
FieldName
;
218
modelName = modelBindingContext.
FieldName
;
Microsoft.AspNetCore.Mvc.Core.Test (1)
Controllers\ControllerBinderDelegateProviderTest.cs (1)
1027
if (inputPropertyValues.TryGetValue(bindingContext.
FieldName
, out var model))