1 interface inheriting from IBindingSourceMetadata
Microsoft.AspNetCore.Mvc.Abstractions (1)
ModelBinding\IBinderTypeProviderMetadata.cs (1)
9public interface IBinderTypeProviderMetadata : IBindingSourceMetadata
16 implementations of IBindingSourceMetadata
Microsoft.AspNetCore.Mvc.ApiExplorer.Test (1)
DefaultApiDescriptionProviderTest.cs (1)
2891private class FromFormFileAttribute : Attribute, IBindingSourceMetadata
Microsoft.AspNetCore.Mvc.Core (6)
FromBodyAttribute.cs (1)
13public class FromBodyAttribute : Attribute, IBindingSourceMetadata, IConfigureEmptyBodyBehavior, IFromBodyMetadata
FromFormAttribute.cs (1)
13public class FromFormAttribute : Attribute, IBindingSourceMetadata, IModelNameProvider, IFromFormMetadata
FromHeaderAttribute.cs (1)
13public class FromHeaderAttribute : Attribute, IBindingSourceMetadata, IModelNameProvider, IFromHeaderMetadata
FromQueryAttribute.cs (1)
13public class FromQueryAttribute : Attribute, IBindingSourceMetadata, IModelNameProvider, IFromQueryMetadata
FromRouteAttribute.cs (1)
14public class FromRouteAttribute : Attribute, IBindingSourceMetadata, IModelNameProvider, IFromRouteMetadata
FromServicesAttribute.cs (1)
26public class FromServicesAttribute : Attribute, IBindingSourceMetadata, IFromServiceMetadata
Microsoft.AspNetCore.Mvc.Core.Test (8)
Controllers\ControllerBinderDelegateProviderTest.cs (2)
1403private class CustomBindingSourceAttribute : Attribute, IBindingSourceMetadata 1408private class ValueProviderMetadataAttribute : Attribute, IBindingSourceMetadata
ModelBinding\Binders\ComplexObjectModelBinderTest.cs (2)
1348private class NonValueBinderMetadataAttribute : Attribute, IBindingSourceMetadata 1356private class ValueBinderMetadataAttribute : Attribute, IBindingSourceMetadata
ModelBinding\Binders\ComplexTypeModelBinderTest.cs (2)
1523private class NonValueBinderMetadataAttribute : Attribute, IBindingSourceMetadata 1531private class ValueBinderMetadataAttribute : Attribute, IBindingSourceMetadata
ModelBinding\CompositeValueProviderTest.cs (2)
258private class TestValueProviderMetadata : IBindingSourceMetadata 273private class UnrelatedValueBinderMetadata : IBindingSourceMetadata
Microsoft.AspNetCore.Mvc.IntegrationTests (1)
GenericModelBinderIntegrationTest.cs (1)
131private class BindAddressAttribute : Attribute, IBindingSourceMetadata
6 references to IBindingSourceMetadata
Microsoft.AspNetCore.Mvc.Abstractions (3)
ModelBinding\BindingInfo.cs (3)
138foreach (var bindingSourceAttribute in attributes.OfType<IBindingSourceMetadata>()) 185$"The {nameof(FromKeyedServicesAttribute)} is not supported on parameters that are also annotated with {nameof(IBindingSourceMetadata)}.");
Microsoft.AspNetCore.Mvc.Core (2)
ModelBinding\Metadata\DefaultBindingMetadataProvider.cs (2)
42foreach (var bindingSourceAttribute in context.Attributes.OfType<IBindingSourceMetadata>())
Microsoft.AspNetCore.Mvc.Core.Test (1)
ModelBinding\CompositeValueProviderTest.cs (1)
116public void FilterReturnsItself_ForAnyClassRegisteredAsGenericParam(IBindingSourceMetadata metadata)