1 write to _ocspUrls
System.Net.Security (1)
System\Net\Security\SslStreamCertificateContext.Linux.cs (1)
236
(
_ocspUrls
??= new List<string>()).Add(entry);
11 references to _ocspUrls
System.Net.Security (11)
System\Net\Security\SslStreamCertificateContext.Linux.cs (11)
118
internal bool OcspStaplingAvailable =>
_ocspUrls
is not null;
224
if (
_ocspUrls
is null && _rootCertificate is not null)
246
if (
_ocspUrls
is null)
274
Debug.Assert(
_ocspUrls
is not null);
275
Debug.Assert(
_ocspUrls
.Count > 0);
317
for (int i = 0; i <
_ocspUrls
.Count; i++)
319
string url = MakeUrl(
_ocspUrls
[i], rentedChars);
333
string tmp =
_ocspUrls
[0];
334
_ocspUrls
[0] =
_ocspUrls
[i];
335
_ocspUrls
[i] = tmp;