SendResultType Enumeration
Describes the result of a send operation.
Namespace: MobileTrack.Common.EnumsAssembly: MobileTrack.Common (in MobileTrack.Common.dll) Version: 0.7+1dadc87dcf0a0f837e19a3ce2deb7c1cd85375d1
public enum SendResultType
| Ok | 0 |
The send operation completed successfully and the endpoint reported that the requested action was performed normally.
|
| Rejected | 1 |
The send operation completed successfully, but the endpoint rejected the request; for example because of a malformed payload.
|
| RemoteError | 2 |
The send operation completed successfully and the endpoint accepted the message, but the remote service reported
a problem; e.g. a malfunction or a misconfiguration.
|
| UnexpectedResponse | 3 |
The remote response was not understood by the connector.
|
| Timeout | 4 |
The send operation timed out.
|
| SocketError | 5 |
The send operation failed due to a network error.
|
| InternalError | 6 |
The send operation failed due to a miscellaneous internal error.
|
| CannotSend | 7 |
No send operation can be initiated.
|
| NotSet | 8 |
No status has yet been set. Can be used as an initial/default value until the actual result is known.
|