1 implementation of IBadRequestExceptionFeature
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Http\HttpProtocol.Generated.cs (1)
38IBadRequestExceptionFeature
12 references to IBadRequestExceptionFeature
InMemory.FunctionalTests (2)
BadHttpRequestTests.cs (2)
338var badRequestFeature = featureCollection.Get<IBadRequestExceptionFeature>();
Microsoft.AspNetCore.Server.Kestrel.Core (10)
Internal\Http\HttpProtocol.FeatureCollection.cs (1)
244Exception? IBadRequestExceptionFeature.Error
Internal\Http\HttpProtocol.Generated.cs (9)
57internal protected IBadRequestExceptionFeature? _currentIBadRequestExceptionFeature; 288else if (key == typeof(IBadRequestExceptionFeature)) 440else if (key == typeof(IBadRequestExceptionFeature)) 442_currentIBadRequestExceptionFeature = (IBadRequestExceptionFeature?)value; 594else if (typeof(TFeature) == typeof(IBadRequestExceptionFeature)) 596feature = Unsafe.As<IBadRequestExceptionFeature?, TFeature?>(ref _currentIBadRequestExceptionFeature); 754else if (typeof(TFeature) == typeof(IBadRequestExceptionFeature)) 756_currentIBadRequestExceptionFeature = Unsafe.As<TFeature?, IBadRequestExceptionFeature?>(ref feature); 904yield return new KeyValuePair<Type, object>(typeof(IBadRequestExceptionFeature), _currentIBadRequestExceptionFeature);