Reads an SNMP object.
object.ReadObject(
sObjectID As String)
[,iMaxBufferSize As Integer]
The identifier of the SNMP object that is being read.
Optional. The size of the buffer, in kilobytes (default=256).
Variant.
This example reads the SNMP object whose ID is 1.3.6.1.2.1.1.3.
set SNMP = CreateObject("ucx:SNMP")
X = SNMP.ReadObject("1.3.6.1.2.1.1.3")
if (Err = 0)
print ("Value of 1.3.6.1.2.1.1.3 is ", X)
endif