EncryptionPolicy Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies the encryption policy.
public enum class EncryptionPolicy
public enum EncryptionPolicy
type EncryptionPolicy =
Public Enum EncryptionPolicy
- Inheritance
Fields
AllowNoEncryption | 1 | Prefer that full encryption be used, but allow a NULL cipher (no encryption) if the server agrees. Starting in .NET 7, this member is obsolete. |
NoEncryption | 2 | Allow no encryption and request that a NULL cipher be used if the other endpoint can handle a NULL cipher. Starting in .NET 7, this member is obsolete. |
RequireEncryption | 0 | Require encryption and never allow a NULL cipher. |
Examples
The EncryptionPolicy will be applied to an SSL/TLS session.
Remarks
The EncryptionPolicy can be set to require, allow, or prevent encryption.