Xojo Developer Conference
25/27th April 2018 in Denver.
MBS Xojo Conference
6/7th September 2018 in Munich, Germany.
25/27th April 2018 in Denver.
MBS Xojo Conference
6/7th September 2018 in Munich, Germany.
Platforms to show: All Mac Windows Linux Cross-Platform
NetSNMPMBS.Constructor
Function:
The constructor.
Type | Topic | Plugin | Version | macOS | Windows | Linux | Console & Web | iOS |
method | Network | MBS Network Plugin | 17.3 | Yes | No | Yes | Yes | No |
NetSNMPMBS.Destructor
Function:
The destructor.
Type | Topic | Plugin | Version | macOS | Windows | Linux | Console & Web | iOS |
method | Network | MBS Network Plugin | 17.3 | Yes | No | Yes | Yes | No |
NetSNMPMBS.Query(ObjectID as String) as String
Function:
Peforms a SNMP Get Query
Example:
Notes:
Please set community and IP properties before.
Lasterror and ErrorMessage properties are set.
Type | Topic | Plugin | Version | macOS | Windows | Linux | Console & Web | iOS |
method | Network | MBS Network Plugin | 17.3 | Yes | No | Yes | Yes | No |
Example:
dim s as new NetSNMPMBS
s.Community = "demopublic"
s.IP = "test.net-snmp.org"
dim r as string = s.Query("system.sysUpTime.0")
MsgBox r
Please set community and IP properties before.
Lasterror and ErrorMessage properties are set.
NetSNMPMBS.QueryMT(ObjectID as String) as String
Function:
Peforms a SNMP Get Query
Example:
Notes:
Please set community and IP properties before.
Lasterror and ErrorMessage properties are set.
Same as Query, but thread friendly.
Must be called inside a Xojo (Real Studio) thread so time yields to main thread and you can keep the GUI running.
Type | Topic | Plugin | Version | macOS | Windows | Linux | Console & Web | iOS |
method | Network | MBS Network Plugin | 17.3 | Yes | No | Yes | Yes | No |
Example:
dim s as new NetSNMPMBS
s.Community = "demopublic"
s.IP = "test.net-snmp.org"
dim r as string = s.Query("system.sysUpTime.0")
MsgBox r
Please set community and IP properties before.
Lasterror and ErrorMessage properties are set.
Same as Query, but thread friendly.
Must be called inside a Xojo (Real Studio) thread so time yields to main thread and you can keep the GUI running.
The items on this page are in the following plugins: MBS Network Plugin.
Links
MBS Xojo Plugins