Skip to content
DocsTry Aspire
DocsTry

RavenDBSecuredServerSettings Properties

ClassProperties4 members
Represents secured settings for a RavenDB server, including certificate information and a public server URL.
CertificatePasswordSection titled CertificatePasswordnullablestring?
The password for the certificate file, if required.
public string? CertificatePassword { get; }
CertificatePathSection titled CertificatePathstring
The path to the certificate file.
public string CertificatePath { get; }
ClientCertificateSection titled ClientCertificatenullableX509Certificate2?
Optional client certificate that will be used by client components (for example health checks or ensure-database logic) when connecting to this secured RavenDB server.
public X509Certificate2? ClientCertificate { get; init; }
PublicServerUrlSection titled PublicServerUrlstring
The public server URL (domain) that the secured RavenDB server will expose.
public string PublicServerUrl { get; }