1 write to UriPrefix
InMemory.FunctionalTests (1)
src\Servers\Kestrel\shared\test\RevocationResponder.cs (1)
38
UriPrefix
= uriPrefix;
12 references to UriPrefix
InMemory.FunctionalTests (12)
src\Servers\Kestrel\shared\test\CertificateAuthority.cs (6)
841
string certUrl = $"{responder.
UriPrefix
}cert/{rootSkid.SubjectKeyIdentifier}.cer";
842
string cdpUrl = $"{responder.
UriPrefix
}crl/{rootSkid.SubjectKeyIdentifier}.crl";
843
string ocspUrl = $"{responder.
UriPrefix
}ocsp/{rootSkid.SubjectKeyIdentifier}";
872
certUrl = $"{responder.
UriPrefix
}cert/{intermedSkid.SubjectKeyIdentifier}.cer";
873
cdpUrl = $"{responder.
UriPrefix
}crl/{intermedSkid.SubjectKeyIdentifier}.crl";
874
ocspUrl = $"{responder.
UriPrefix
}ocsp/{intermedSkid.SubjectKeyIdentifier}";
src\Servers\Kestrel\shared\test\RevocationResponder.cs (6)
48
if (authority.AiaHttpUri != null && authority.AiaHttpUri.StartsWith(
UriPrefix
, StringComparison.OrdinalIgnoreCase))
50
string path = authority.AiaHttpUri.Substring(
UriPrefix
.Length - 1);
55
if (authority.CdpUri != null && authority.CdpUri.StartsWith(
UriPrefix
, StringComparison.OrdinalIgnoreCase))
57
string path = authority.CdpUri.Substring(
UriPrefix
.Length - 1);
62
if (authority.OcspUri != null && authority.OcspUri.StartsWith(
UriPrefix
, StringComparison.OrdinalIgnoreCase))
64
string path = authority.OcspUri.Substring(
UriPrefix
.Length - 1);