Enum UaEndpointSecurityMode
Defines the security modes available for an OPC UA Endpoint.
[Flags]
public enum UaEndpointSecurityMode
Fields
None = 0
No security applied to the endpoint.
Sign = 1
Messages are signed but not encrypted.
SignAndEncrypt = 2
Messages are both signed and encrypted.
SignOrSignAndEncrypt = Sign | SignAndEncrypt
Allows either Sign or SignAndEncrypt.