1 /* 2 * Created by SharpDevelop. 3 * User: lextm 4 * Date: 2008/5/31 5 * Time: 13:18 6 * 7 * To change this template use Tools | Options | Coding | Edit Standard Headers. 8 */ 9 10 namespace Lextm.SharpSnmpLib.Mib.Elements.Entities 11 { 12 /// <summary> 13 /// The AGENT-CAPABILITIES construct is used to specify implementation characteristics of an SNMP agent sub-system with respect to object types and events. 14 /// </summary> 15 public sealed class AgentCapabilities : EntityBase 16 { 17 /// <summary> 18 /// Creates an <see cref="AgentCapabilities"/> instance. 19 /// </summary> 20 /// <param name="module"></param> 21 /// <param name="header"></param> 22 /// <param name="lexer"></param> AgentCapabilities(IModule module, SymbolList preAssignSymbols, ISymbolEnumerator symbols)23 public AgentCapabilities(IModule module, SymbolList preAssignSymbols, ISymbolEnumerator symbols) 24 : base(module, preAssignSymbols, symbols) 25 { 26 } 27 28 } 29 }