IPWorks SNMP 2020 Kotlin Edition

Questions / Feedback?

NodeSyntax Property

The syntax of the selected node.

Syntax

public val nodeSyntax: MibbrowserNodeSyntaxes

public enum class MibbrowserNodeSyntaxes(val value: Int) {
stxBoolean(1),
stxInteger(2),
stxBitString(3),
stxOctetString(4),
stxNull(5),
stxObjectId(6),
stxEnumerated(10),
stxSequenceOf(15),
stxSequence(16),
stxSet(17),
stxChoice(18),
stxNetworkAddress(21),
stxIpAddress(64),
stxCounter(65),
stxGauge(66),
stxTimeTicks(67),
stxOpaque(68),
stxNSAP(69),
stxCounter64(70),
stxUInteger(71),
stxUnknown(59);
}

Default Value

6

Remarks

The syntax defines what type of data the selected node contains. Common data types include:

Boolean (1) Boolean variable.
Integer (2) A 32-bit signed integer.
OctetString (4) An octet string variable that is binary or textual data.
Null (5) NULL value.
ObjectId (6) Object identifier.
IpAddress (64) A 32-bit Internet address (aaa.bbb.ccc.ddd)
Counter (65) A counter that increases until it reaches a maximum value of (2^32).
Gauge (66) A non-negative int that can increase or decrease, but never exceed a maximum value.
TimeTicks (67) A counter that measures time in hundredths of a second.
Opaque (68) This type supports the capability to pass ASN.1 syntax.
Counter64 (70) A counter that increases until it reaches a maximum value of (2^64).
UInteger (71) A 32-bit unsigned integer.

Additional type definitions can be found in the SNMP RFC's.

This property is read-only.

Copyright (c) 2021 /n software inc. - All rights reserved.
IPWorks SNMP 2020 Kotlin Edition - Version 20.0 [Build 7941]