2 instantiations of HttpRequestIdentifierFeature
Microsoft.AspNetCore.Http (1)
DefaultHttpContext.cs (1)
34
private static readonly Func<IFeatureCollection, IHttpRequestIdentifierFeature> _newHttpRequestIdentifierFeature = f => new
HttpRequestIdentifierFeature
();
Microsoft.AspNetCore.Owin (1)
OwinEnvironment.cs (1)
442
{ OwinConstants.RequestId, new FeatureMap<IHttpRequestIdentifierFeature>(feature => feature.TraceIdentifier, ()=> null, (feature, value) => feature.TraceIdentifier = (string)value, () => new
HttpRequestIdentifierFeature
()) },