1 implementation of Activity
Microsoft.AspNetCore.Hosting (1)
Internal\HttpActivityFeature.cs (1)
20
public Activity
Activity
{ get; set; }
6 references to Activity
Microsoft.AspNetCore.Components.Endpoints (1)
RazorComponentEndpointInvoker.cs (1)
49
var httpActivityContext = context.Features.Get<IHttpActivityFeature>()?.
Activity
.Context ?? default;
Microsoft.AspNetCore.Components.Server (2)
ComponentHub.cs (2)
144
var httpActivityContext = Context.GetHttpContext().Features.Get<IHttpActivityFeature>()?.
Activity
.Context ?? default;
392
var httpActivityContext = Context.GetHttpContext().Features.Get<IHttpActivityFeature>()?.
Activity
.Context ?? default;
Microsoft.AspNetCore.Http (2)
Features\IHttpActivityFeature.cs (2)
9
/// Feature to access the <see cref="
Activity
"/> associated with a request.
14
/// Returns the <see cref="
Activity
"/> associated with the current request.
Microsoft.AspNetCore.Http.Connections (1)
Internal\HttpConnectionDispatcher.cs (1)
125
context.Features.Get<IHttpActivityFeature>()?.
Activity
.AddTag("http.long_running", "true");