Result codes sent by UdpTarget class to the SnmpAsyncCallback delegate.
Namespace:
SnmpSharpNetAssembly: SnmpSharpNet (in SnmpSharpNet.dll) Version: 0.7.8.0 (0.7.8)
Syntax
| C# |
|---|
public enum AsyncRequestResult |
| Visual Basic (Declaration) |
|---|
Public Enumeration AsyncRequestResult |
| Visual C++ |
|---|
public enum class AsyncRequestResult |
Members
| Member name | Value | Description | |
|---|---|---|---|
| NoError | 0 | No error. Data was received from the socket. | |
| RequestInProgress | 1 | Request is in progress. A new request can not be initiated until previous request completes. | |
| Timeout | 2 | Request has timed out. Maximum number of retries has been reached without receiving a reply from the peer request was sent to | |
| SocketSendError | 3 | An error was encountered when attempting to send data to the peer. Request failed. | |
| SocketReceiveError | 4 | An error was encountered when attempting to receive data from the peer. Request failed. | |
| Terminated | 5 | Request has been terminated by the user. | |
| NoDataReceived | 6 | No data was received from the peer | |
| AuthenticationError | 7 | Authentication error | |
| PrivacyError | 8 | Privacy error | |
| EncodeError | 9 | Error encoding SNMP packet | |
| DecodeError | 10 | Error decoding SNMP packet |