1 write to _ocspUrls
System.Net.Security (1)
System\Net\Security\SslStreamCertificateContext.Linux.cs (1)
212
(
_ocspUrls
??= new List<string>()).Add(entry);
11 references to _ocspUrls
System.Net.Security (11)
System\Net\Security\SslStreamCertificateContext.Linux.cs (11)
94
internal bool OcspStaplingAvailable =>
_ocspUrls
is not null;
200
if (
_ocspUrls
is null && _rootCertificate is not null)
222
if (
_ocspUrls
is null)
250
Debug.Assert(
_ocspUrls
is not null);
251
Debug.Assert(
_ocspUrls
.Count > 0);
293
for (int i = 0; i <
_ocspUrls
.Count; i++)
295
string url = MakeUrl(
_ocspUrls
[i], rentedChars);
309
string tmp =
_ocspUrls
[0];
310
_ocspUrls
[0] =
_ocspUrls
[i];
311
_ocspUrls
[i] = tmp;