1 implementation of IsAttached
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Infrastructure\DebuggerWrapper.cs (1)
15
public bool
IsAttached
=> Debugger.IsAttached;
4 references to IsAttached
Microsoft.AspNetCore.Server.Kestrel.Core (4)
Internal\Infrastructure\Heartbeat.cs (1)
54
if (!_debugger.
IsAttached
)
Internal\Infrastructure\TimeoutControl.cs (3)
62
if (!Debugger.
IsAttached
)
123
timeout = rate < _minReadRate.BytesPerSecond && !Debugger.
IsAttached
;
157
timeout = _concurrentAwaitingWrites > 0 && timestamp > _writeTimingTimeoutTimestamp && !Debugger.
IsAttached
;