1 write to IsGreedy
Microsoft.AspNetCore.Mvc.Abstractions (1)
ModelBinding\BindingSource.cs (1)
122IsGreedy = 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)
31if (bindingSource.IsGreedy)
Microsoft.AspNetCore.Mvc.ApiExplorer (1)
DefaultApiDescriptionProvider.cs (1)
572if (source != null && source.IsGreedy)
Microsoft.AspNetCore.Mvc.Core (9)
ModelBinding\Binders\ComplexObjectModelBinder.cs (3)
524if (!isTopLevelObject && bindingSource != null && bindingSource.IsGreedy) 588if (bindingSource != null && bindingSource.IsGreedy) 624if (bindingSource != null && bindingSource.IsGreedy)
ModelBinding\Binders\ComplexTypeModelBinder.cs (2)
329if (!isTopLevelObject && bindingSource != null && bindingSource.IsGreedy) 389if (bindingSource != null && bindingSource.IsGreedy)
ModelBinding\BindingSourceValueProvider.cs (2)
33/// <see cref="ModelBinding.BindingSource.IsGreedy"/> equal to <c>false</c>. 39if (bindingSource.IsGreedy)
ModelBinding\DefaultModelBindingContext.cs (2)
259if (modelMetadata.BindingSource != null && !modelMetadata.BindingSource.IsGreedy) 310if (bindingSource == null || bindingSource.IsGreedy)