ZFrameOption.cs 127 B

123456789
  1. namespace ZeroMQ
  2. {
  3. public enum ZFrameOption : int
  4. {
  5. MORE = 1,
  6. SRCFD = 2,
  7. SHARED = 3,
  8. }
  9. }