1 write to _delayInMilliseconds
NuGet.Protocol (1)
EnhancedHttpRetryHelper.cs (1)
85_delayInMilliseconds = new Lazy<(bool, int)>(() => GetIntFromEnvironmentVariableOrDefault(DelayInMillisecondsEnvironmentVariableName, defaultValue: DefaultDelayMilliseconds, _environmentVariableReader));
3 references to _delayInMilliseconds
NuGet.Protocol (3)
EnhancedHttpRetryHelper.cs (3)
105internal int DelayInMillisecondsOrDefault => _delayInMilliseconds.Value.Item2; 111internal int? DelayInMilliseconds => _delayInMilliseconds.Value.Item1 ? _delayInMilliseconds.Value.Item2 : null;