STM32F769IDiscovery
1.00
uDANTE Audio Networking with STM32F7 DISCO board
Main Page
Related Pages
Modules
Namespaces
Data Structures
Files
Examples
File List
Globals
Eclipse_WS2
STM32F769IDiscovery
Middlewares
Third_Party
LwIP
src
apps
snmp
LwipMibCompiler
SharpSnmpLib
Mib
Elements
Types
IpAddressType.cs
Go to the documentation of this file.
1
2
namespace
Lextm
.SharpSnmpLib.Mib.Elements.Types
3
{
4
public
class
IpAddressType
:
OctetStringType
5
{
6
public
IpAddressType
(
IModule
module,
string
name,
ISymbolEnumerator
symbols)
7
: base(module, name, symbols)
8
{
9
if
(this.Size.Count != 0)
10
{
11
throw
new
MibException
(
"Size definition not allowed for IpAddress type!"
);
12
}
13
14
// IpAddress type is defined as:
15
// IpAddress ::=
16
// [APPLICATION 0]
17
// IMPLICIT OCTET STRING (SIZE (4))
18
this.Size.Add(
new
ValueRange
(4, null));
19
}
20
}
21
}
Lextm.SharpSnmpLib.Mib.IModule
MIB Module interface.
Definition:
IModule.cs:36
Lextm.SharpSnmpLib.Mib.Elements.Types.IpAddressType.IpAddressType
IpAddressType(IModule module, string name, ISymbolEnumerator symbols)
Definition:
IpAddressType.cs:6
Lextm.SharpSnmpLib.Mib.MibException
Description of MibException.
Definition:
MibException.cs:24
Lextm.SharpSnmpLib.Mib.ISymbolEnumerator
Definition:
ISymbolEnumerator.cs:5
Lextm.SharpSnmpLib.Mib.Elements.Types.OctetStringType
Definition:
OctetStringType.cs:5
Lextm.SharpSnmpLib.Mib.Elements.Types.IpAddressType
Definition:
IpAddressType.cs:4
Lextm.SharpSnmpLib.Mib.ValueRange
Definition:
ValueRange.cs:29
Lextm
Generated by
1.8.11