MaxAccess.cs 274 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Lextm.SharpSnmpLib.Mib
  6. {
  7. public enum MaxAccess
  8. {
  9. notAccessible,
  10. accessibleForNotify,
  11. readOnly,
  12. readWrite,
  13. readCreate
  14. }
  15. }