1 write to IsGreedy
Microsoft.AspNetCore.Mvc.Abstractions (1)
ModelBinding\BindingSource.cs (1)
122
IsGreedy
= isGreedy;
14 references to IsGreedy
Microsoft.AspNetCore.Mvc.Abstractions (4)
ModelBinding\BindingSource.cs (3)
142
/// For sources based on a <see cref="IValueProvider"/>, setting <see cref="
IsGreedy
"/> to <c>false</c>
147
/// Set <see cref="
IsGreedy
"/> to <c>true</c> for most custom <see cref="IModelBinder"/> implementations.
151
/// and bind them individually using <see cref="IValueProvider"/>, then set <see cref="
IsGreedy
"/> to
ModelBinding\CompositeBindingSource.cs (1)
31
if (bindingSource.
IsGreedy
)
Microsoft.AspNetCore.Mvc.ApiExplorer (1)
DefaultApiDescriptionProvider.cs (1)
572
if (source != null && source.
IsGreedy
)
Microsoft.AspNetCore.Mvc.Core (9)
ModelBinding\Binders\ComplexObjectModelBinder.cs (3)
524
if (!isTopLevelObject && bindingSource != null && bindingSource.
IsGreedy
)
588
if (bindingSource != null && bindingSource.
IsGreedy
)
624
if (bindingSource != null && bindingSource.
IsGreedy
)
ModelBinding\Binders\ComplexTypeModelBinder.cs (2)
329
if (!isTopLevelObject && bindingSource != null && bindingSource.
IsGreedy
)
389
if (bindingSource != null && bindingSource.
IsGreedy
)
ModelBinding\BindingSourceValueProvider.cs (2)
33
/// <see cref="ModelBinding.BindingSource.
IsGreedy
"/> equal to <c>false</c>.
39
if (bindingSource.
IsGreedy
)
ModelBinding\DefaultModelBindingContext.cs (2)
259
if (modelMetadata.BindingSource != null && !modelMetadata.BindingSource.
IsGreedy
)
310
if (bindingSource == null || bindingSource.
IsGreedy
)