Result codes sent by UdpTarget class to the SnmpAsyncCallback delegate.
Namespace:
SnmpSharpNetAssembly: SnmpSharpNet (in SnmpSharpNet.dll) Version: 0.5.0.0 (0.5.0.0)
Syntax
| C# | Visual Basic | Visual C++ |
public enum AsyncRequestResult
Public Enumeration AsyncRequestResult
public enum class AsyncRequestResult
Members
| Member | 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
|