Table of Contents

Enum EncyrptConnection

Namespace
OrpheusInterfaces.Configuration
Assembly
OrpheusInterfaces.dll

Database encryption connection mode

public enum EncyrptConnection

Fields

[JsonPropertyName("mandatory")] ecMandatory = 2

Enforce encrypting the connection.

[JsonPropertyName("none")] ecNone = 0

Do not encrypt the connection. Use for local dev / Docker without TLS.

[JsonPropertyName("optional")] ecOptional = 1

Optionally encrypt the connection.

[JsonPropertyName("strict")] ecStrict = 3

Enables and requires TDS 8.0, TLS encryption to the server. If the server doesn't support TDS 8.0, TLS encryption, the connection will fail.