3 |
2.948343 |
MQConnectionState::MQCONN_OUT_OF_MEMORY |
Int32 |
-2147483635 |
0x8000000D |
-2147483635 |
|
|
System.Int32 |
MQCONN_OUT_OF_MEMORY, // failure due to low memory (e.g. bad_alloc exception when trying to send a packet)
|
%ProgramFiles(x86)%\Windows Kits\10\Include\10.0.19041.0\um\Mq.h(171,0) |
- If WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
|
5 |
2.211257 |
TypeID |
Enum |
|
|
|
|
|
|
enum TypeID
{
UNKNOWN = 0,
EXCEPTION,
BAD_ALLOC,
BAD_CAST,
BAD_EXCEPTION,
BAD_TYPEID,
__NON_RTTI_OBJECT,
LOGIC_ERROR,
DOMAIN_ERROR,
INVALID_ARGUMENT,
LENGTH_ERROR,
OUT_OF_RANGE,
RUNTIME_ERROR,
RANGE_ERROR,
OVERFLOW_ERROR,
UNDERFLOW_ERROR,
IOS_BASE_FAILURE,
NUM_EXCEPTION_TYPES
};
|
%ProgramFiles(x86)%\Microsoft Visual Studio\2019\Professional\VSSDK\VisualStudioIntegration\Common\Source\CPP\VSL\include\VSLExceptions.h(316,0) |
|
6 |
0.921357 |
MQConnectionState |
Enum |
|
|
|
|
|
|
typedef enum tagMQConnectionState
{
MQCONN_NOFAILURE = 0, // connection is in the process of establishment, no failures have occured
MQCONN_ESTABLISH_PACKET_RECEIVED, // NATIVE SESSION ONLY: connection establishment packed has been received
MQCONN_READY, // connection has been successfully established and is ready to send messages
MQCONN_UNKNOWN_FAILURE = 0x80000000, // exact reason for failure cannot be determined
MQCONN_PING_FAILURE, // ping didnt answer (udp to 3527)
MQCONN_CREATE_SOCKET_FAILURE, // these 4 states represent failure to establish TCP connection on 1801
MQCONN_BIND_SOCKET_FAILURE,
MQCONN_CONNECT_SOCKET_FAILURE,
MQCONN_TCP_NOT_ENABLED,
MQCONN_SEND_FAILURE, // send operation on a socket (WSASend) failed
MQCONN_NOT_READY, // send operation failed because connection is not ready
MQCONN_NAME_RESOLUTION_FAILURE, // dns failure
MQCONN_INVALID_SERVER_CERT, // could not validate server certificate in https scenario
MQCONN_LIMIT_REACHED, // connection limit reached, can't establish new session to a specific destination
MQCONN_REFUSED_BY_OTHER_SIDE, // connection refused by other side due to any reason(quota, invalid packet, connection limit reached)
MQCONN_ROUTING_FAILURE, // absense of DS connectivity prevented getting routing data
MQCONN_OUT_OF_MEMORY, // failure due to low memory (e.g. bad_alloc exception when trying to send a packet)
} MQConnectionState;
|
%ProgramFiles(x86)%\Windows Kits\10\Include\10.0.19041.0\um\Mq.h(151,0) |
- If WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
|