3 implementations of IsAttached
InMemory.FunctionalTests (1)
src\Servers\Kestrel\shared\test\Http3\Http3InMemory.cs (1)
51public bool IsAttached => false;
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Infrastructure\DebuggerWrapper.cs (1)
15public bool IsAttached => Debugger.IsAttached;
Microsoft.AspNetCore.Server.Kestrel.Microbenchmarks (1)
src\Servers\Kestrel\shared\test\Http3\Http3InMemory.cs (1)
51public bool IsAttached => false;
8 references to IsAttached
Microsoft.AspNetCore.Server.Kestrel.Core (4)
Internal\Infrastructure\Heartbeat.cs (1)
54if (!_debugger.IsAttached)
Internal\Infrastructure\TimeoutControl.cs (3)
62if (!Debugger.IsAttached) 123timeout = rate < _minReadRate.BytesPerSecond && !Debugger.IsAttached; 157timeout = _concurrentAwaitingWrites > 0 && timestamp > _writeTimingTimeoutTimestamp && !Debugger.IsAttached;
Microsoft.AspNetCore.Server.Kestrel.Core.Tests (4)
HeartbeatTests.cs (2)
117debugger.Setup(d => d.IsAttached).Returns(false); 160debugger.Setup(d => d.IsAttached).Returns(true);
TimeoutControlTests.cs (2)
28mockDebugger.SetupGet(g => g.IsAttached).Returns(true); 43mockDebugger.SetupGet(g => g.IsAttached).Returns(true);