namespace NetMQ { /// /// The type of security mechanism /// public enum MechanismType { /// /// No security /// Null, /// /// Username and password mechanism over non-encrypted channel /// Plain, /// /// Curve encryption mechanism /// Curve } }