ASP.NET Core Features

Introduction

Request Features, or feature interfaces, offer a centralised way to access functionality that is commonly added by middleware in the pipeline. Features allow us to access information, or, in some case, control the behaviour of the middleware they belong to.

Some examples include:

And many more. A feature is only present if its service/middleware was registered, for example, the Kestrel or the IIS features will only be available if we are using one host or the other.

The way to access a feature is through the HttpContext.Features collection:

var exceptionFeature = HttpContext.Features.Get<IExceptionHandlerFeature>();
var exception = exceptionFeature.Error;

Some of the information that is made available through a feature is also exposed as discrete properties:

Another example, to close/shutdown the existing client connection:

var connectionFeature = HttpContext.Features.Get<IConnectionLifetimeNotificationFeature>();
connectionFeature.RequestClose();

Or, to know the URLs that the server is listening to:

var addressesFeature = HttpContext.Features.Get<IServerAddressesFeature>();
var boundAddresses = addressesFeature.Addresses;

Now, the feature list.

Features List

The features included in ASP.NET Core are as follows:

Namespace Feature Interfaces
Microsoft.AspNetCore.Diagnostics

IDeveloperPageExceptionFilter

IExceptionHandlerFeature

IExceptionHandlerPathFeature

IStatusCodePagesFeature

IStatusCodeReExecuteFeature

Microsoft.AspNetCore.Http.Features

IBadRequestExceptionFeature

IEndpointFeature

IFormFeature

IHttpActivityFeature

IHttpBodyControlFeature

IHttpConnectionFeature

IHttpExtendedConnectFeature

IHttpMaxRequestBodySizeFeature

IHttpMetricsTagsFeature

IHttpRequestBodyDetectionFeature

IHttpRequestFeature

IHttpRequestIdentifierFeature

IHttpRequestLifetimeFeature

IHttpRequestTrailersFeature

IHttpResetFeature

IHttpResponseBodyFeature

IHttpResponseFeature

IHttpResponseTrailersFeature

IHttpsCompressionFeature

IHttpUpgradeFeature

IHttpWebSocketFeature

IHttpWebTransportFeature

IItemsFeature

IQueryFeature

IRequestBodyPipeFeature

IRequestCookiesFeature

IResponseCookiesFeature

IRouteValuesFeature

IServerVariablesFeature

IServiceProvidersFeature

ISessionFeature

ITlsConnectionFeature

ITlsTokenBindingFeature

ITrackingConsentFeature

IWebTransportSession

Microsoft.AspNetCore.Connections.Features

IConnectionCompleteFeature

IConnectionEndPointFeature

IConnectionHeartbeatFeature

IConnectionIdFeature

IConnectionInherentKeepAliveFeature

IConnectionItemsFeature

IConnectionLifetimeFeature

IConnectionLifetimeNotificationFeature

IConnectionMetricsTagsFeature

IConnectionNamedPipeFeature

IConnectionSocketFeature

IConnectionTransportFeature

IConnectionUserFeature

IMemoryPoolFeature

IPersistentStateFeature

IProtocolErrorCodeFeature

IStreamAbortFeature

IStreamClosedFeature

IStreamDirectionFeature

IStreamIdFeature

ITlsHandshakeFeature

ITransferFormatFeature

Microsoft.AspNetCore.Hosting.Server.Features IServerAddressesFeature
Microsoft.AspNetCore.Http.Connections.Features

IHttpContextFeature

IHttpTransportFeature

Microsoft.AspNetCore.Http.Features.Authentication IHttpAuthenticationFeature
Microsoft.AspNetCore.Server.Kestrel.Core.Features

IConnectionTimeoutFeature

IDecrementConcurrentConnectionCountFeature

IHttp2StreamIdFeature

IHttpMinRequestBodyDataRateFeature

IHttpMinResponseDataRateFeature

ISslStreamFeature

ITlsApplicationProtocolFeature

Microsoft.AspNetCore.Server.IIS

IIISEnvironmentFeature

Microsoft.AspNetCore.Antiforgery

IAntiforgeryValidationFeature

Microsoft.AspNetCore.Owin

IOwinEnvironmentFeature

Please have a look at each of the interfaces (long list, I know!) to find out more about each. Again, don't forget that some may not be present on your system, depending on your registered services, hosting, etc.

Conclusion

Request Features offers a convenient way to control and access information about the executing host and middleware, but we need to know the right interfaces, which is not always easy. I hope this list comes in handy!

                             

No Comments

Add a Comment

As it will appear on the website

Not displayed

Your website