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