1 write to _ocspUrls
System.Net.Security (1)
System\Net\Security\SslStreamCertificateContext.Linux.cs (1)
226
(
_ocspUrls
??= new List<string>()).Add(entry);
11 references to _ocspUrls
System.Net.Security (11)
System\Net\Security\SslStreamCertificateContext.Linux.cs (11)
108
internal bool OcspStaplingAvailable =>
_ocspUrls
is not null;
214
if (
_ocspUrls
is null && _rootCertificate is not null)
236
if (
_ocspUrls
is null)
264
Debug.Assert(
_ocspUrls
is not null);
265
Debug.Assert(
_ocspUrls
.Count > 0);
307
for (int i = 0; i <
_ocspUrls
.Count; i++)
309
string url = MakeUrl(
_ocspUrls
[i], rentedChars);
323
string tmp =
_ocspUrls
[0];
324
_ocspUrls
[0] =
_ocspUrls
[i];
325
_ocspUrls
[i] = tmp;