Utility class to enable simplified access to SNMP version 1 and version 2 requests and replies.
Namespace:
SnmpSharpNetAssembly: SnmpSharpNet (in SnmpSharpNet.dll) Version: 0.6.0.0 (0.6.0.0)
Syntax
| C# |
|---|
public class SimpleSnmp |
| Visual Basic (Declaration) |
|---|
Public Class SimpleSnmp |
| Visual C++ |
|---|
public ref class SimpleSnmp |
Remarks
Use this class if you are not looking for "deep" SNMP functionality. Design of the class is based
around providing simplest possible access to SNMP operations without getting stack into details.
The down side of this design approach is that all error messages are returned as "null" return value
which will not tell you why operation failed. I wouldn't recommend using this class for any large
scale projects.
That being said, this class is a nice little example of how to perform different SNMP operations.
Either way, have fun.