STM32F769IDiscovery  1.00
uDANTE Audio Networking with STM32F7 DISCO board
SequenceOf.cs
Go to the documentation of this file.
1 using System.Collections.Generic;
2 
3 namespace Lextm.SharpSnmpLib.Mib.Elements.Types
4 {
8  public sealed class SequenceOf : BaseType
9  {
10  private string _type;
11 
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 }
MIB Module interface.
Definition: IModule.cs:36
SequenceOf(IModule module, string name, ISymbolEnumerator sym)
Definition: SequenceOf.cs:12
The SEQUENCE OF type represents a list of data sets..
Definition: SequenceOf.cs:8