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