SNMP GET request
Namespace:
SnmpSharpNetAssembly: SnmpSharpNet (in SnmpSharpNet.dll) Version: 0.5.0.0 (0.5.0.0)
Syntax
| C# | Visual Basic | Visual C++ |
public Dictionary<Oid, AsnType> Get( SnmpVersion version, string[] oidList )
Public Function Get ( _ version As SnmpVersion, _ oidList As String() _ ) As Dictionary(Of Oid, AsnType)
public: Dictionary<Oid^, AsnType^>^ Get( SnmpVersion version, array<String^>^ oidList )
Parameters
- version
- SnmpVersion
SNMP protocol version number. Acceptable values are SnmpVersion.Ver1 and SnmpVersion.Ver2
- oidList
- array<
String
>[]()[]
List of request OIDs in string dotted decimal format.
Return Value
Result of the SNMP request in a dictionary format with Oid => AsnType values
Examples
SNMP GET request:
CopyC#
Will return:
CopyC#
String snmpAgent = "10.10.10.1"; String snmpCommunity = "public"; SimpleSnmp snmp = new SimpleSnmp(snmpAgent, snmpCommunity); Dictionary<Oid, AsnType> result = snmp.GetNext(SnmpVersion.Ver1, new string[] { "1.3.6.1.2.1.1.1.0" }); if( result == null ) { Console.WriteLine("Request failed."); } else { foreach (KeyValuePair<Oid, AsnType> entry in result) { Console.WriteLine("{0} = {1}: {2}", entry.Key.ToString(), SnmpConstants.GetTypeName(entry.Value.Type), entry.Value.ToString()); } }
1.3.6.1.2.1.1.1.0 = OctetString: "Dual core Intel notebook"