Enum EncyrptConnection
- Namespace
- OrpheusInterfaces.Configuration
- Assembly
- OrpheusInterfaces.dll
Database encryption connection mode
public enum EncyrptConnection
Fields
[JsonPropertyName("mandatory")] ecMandatory = 2Enforce encrypting the connection.
[JsonPropertyName("none")] ecNone = 0Do not encrypt the connection. Use for local dev / Docker without TLS.
[JsonPropertyName("optional")] ecOptional = 1Optionally encrypt the connection.
[JsonPropertyName("strict")] ecStrict = 3Enables 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.