Skip to content
Docs Try Aspire

RavenDBSecuredServerSettings Properties

Class Properties 4 members
Represents secured settings for a RavenDB server, including certificate information and a public server URL.
CertificatePassword Section titled CertificatePassword nullable string?
The password for the certificate file, if required.
public string? CertificatePassword { get; }
CertificatePath Section titled CertificatePath string
The path to the certificate file.
public string CertificatePath { get; }
ClientCertificate Section titled ClientCertificate nullable X509Certificate2?
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; }
PublicServerUrl Section titled PublicServerUrl string
The public server URL (domain) that the secured RavenDB server will expose.
public string PublicServerUrl { get; }