1 using System.Collections.Generic; 2 3 namespace Lextm.SharpSnmpLib.Mib.Elements.Types 4 { 5 /// <summary> 6 /// The SEQUENCE OF type represents a list of data sets.. 7 /// </summary> 8 public sealed class SequenceOf : BaseType 9 { 10 private string _type; 11 SequenceOf(IModule module, string name, ISymbolEnumerator sym)12 public SequenceOf(IModule module, string name, ISymbolEnumerator sym) 13 : base(module, name) 14 { 15 _type = sym.NextNonEOLSymbol().ToString(); 16 } 17 18 public string Type 19 { 20 get { return _type; } 21 } 22 } 23 }