C# Class SnmpSharpNet.SnmpErrorStatusException

Exception thrown by SimpleSnmp methods when SNMP request returned a SnmpStatus error in the reply and SuppressExceptions flag is set to false.
Inheritance: System.Exception
Datei anzeigen Open project: griffina/SnmpSharpNet

Protected Properties

Property Type Description
_errorIndex int
_errorStatus int

Public Methods

Method Description
SnmpErrorStatusException ( ) : System

Constructor

SnmpErrorStatusException ( string msg, int status, int index ) : System

Constructor

Method Details

SnmpErrorStatusException() public method

Constructor
public SnmpErrorStatusException ( ) : System
return System

SnmpErrorStatusException() public method

Constructor
public SnmpErrorStatusException ( string msg, int status, int index ) : System
msg string Exception message
status int ErrorStatus value
index int ErrorIndex value
return System

Property Details

_errorIndex protected_oe property

SNMP reply ErrorIndex value
protected int _errorIndex
return int

_errorStatus protected_oe property

SNMP reply ErrorStatus value
protected int _errorStatus
return int