1 write to IsStopped
System.Diagnostics.DiagnosticSource (1)
System\Diagnostics\Activity.cs (1)
858IsStopped = true;
10 references to IsStopped
Microsoft.AspNetCore.SignalR.Client.FunctionalTests (3)
HubConnectionTests.Tracing.cs (3)
279Assert.False(clientActivity.IsStopped); 331Assert.True(a.IsStopped); 352Assert.True(clientActivity.IsStopped);
Microsoft.AspNetCore.SignalR.Tests (1)
HubConnectionHandlerTests.Activity.cs (1)
494Assert.True(activity.IsStopped);
System.Diagnostics.DiagnosticSource (4)
System\Diagnostics\Activity.cs (4)
856if (!IsStopped) 1115if (!IsStopped) 1412bool canSet = activity == null || (activity.Id != null && !activity.IsStopped); 1476/// When subscribing to <see cref="Activity"/> stop event using <see cref="ActivityListener.ActivityStopped"/>, the received <see cref="Activity"/> object in the event callback will have <see cref="IsStopped"/> as true.
System.Net.Http (2)
System\Net\Http\SocketsHttpHandler\ConnectionPool\HttpConnectionPool.Http3.cs (1)
295Debug.Assert(connectionSetupActivity?.IsStopped is not true);
System\Net\Http\SocketsHttpHandler\Http3Connection.cs (1)
314Debug.Assert(waitForConnectionActivity?.IsStopped != false);