📄 mqoa.rc
字号:
IDS_lJournal "Property indicating journaling option for message. Possible values defined by MQMSGJOURNAL enumeration."
IDS_queueinfoResponse "Property indicating the response queue for the message."
IDS_lAppSpecific "Property containing application-specific information."
IDS_guidSrcMachine "Property identifying the computer where the message originated."
IDS_lenBody "Property indicating the length (in bytes) of the message body."
IDS_body "Property containing the message body. It is a Variant type and can contain any intrinsic type and persistent object."
IDS_queueinfoAdmin "Property indicating the administration queue for the message."
IDS_id "Property containing the MSMQ-generated identifier (array of bytes) of the message."
IDS_idCorrelation "Property indicating the correlation identifier (array of bytes) of the message."
IDS_lAck "Property indicating what kind of acknowledgement message is returned. Possible values defined by MQMSGACKNOWLEDGEMENT enumeration."
END
STRINGTABLE DISCARDABLE
BEGIN
IDS_strLabel "Property indicating the label of the message."
IDS_lMaxTimeToReachQueue
"Property indicating the amount of time MSMQ has to deliver the message to its destination queue."
IDS_lMaxTimeToReceive "Property indicating the amount of time the receiving application has to retrieve the message from its destination queue."
IDS_lHashAlg "Property indicating which hash algorithm to use when authenticating the message."
IDS_lEncryptAlg "Property indicating which encryption algorithm to use when encrypting the message body of a private message."
IDS_dateSentTime "Property indicating when the message was sent. Type is Variant Date."
IDS_dateArrivedTime "Property indicating when the message arrived at its destination queue. Type is Variant Date."
IDS_queueinfoDest "Property indicating the destination queue of the message. Typically used when reading response messages, or messages in machine journals or dead-letter queues."
IDS_binSenderCert "Property containing the security certificate of a message. Type is an array of bytes."
IDS_binSenderId "Property containing the sender identifier of the message. Type is an array of bytes."
IDS_lSenderIdType "Property indicating what type of identifier is attached to the message. Possible values are defined by MSMQSENDERIDTYPE enumeration."
IDS_Send "Method used to send a message to the destination queue. Can optionally be part of a transaction."
IDS_AttachCurrentSecurityContext
"Method used to associate the current security context with a message."
IDS_lAccess "Property indicating the access mode of a queue. Possible values defined by MQACCESS enumeration."
IDS_lShareMode "Property indicating the share mode of a queue. Possible values defined by MQSHARE enumeration."
IDS_queueinfo "Property referring to an MSMQQueueInfo instance describing the queue."
END
STRINGTABLE DISCARDABLE
BEGIN
IDS_lHandle "Property indicating the internal MSMQ handle of an open queue instance. Useful for directly calling MSMQ APIs."
IDS_isOpen "Property indicating whether or not the queue object refers to an open instance of a queue."
IDS_Close "Method to close an open instance of a queue."
IDS_Receive "Method to synchronously retrieve a message from a queue. It always removes the first message in queue regardless of the position of the implicit cursor. Optional parameters include ReceiveTimeout (default set to INFINITE), Transaction (default set to MTS Transaction), WantDestinationQueue (default set to False), and WantBody (default set to True)."
IDS_Peek "Method to synchronously peek at the first message in the queue, regardless of the implicit cursor position. Optional parameters include ReceiveTimeout (default set to INFINITE), WantDestinationQueue (default set to False), and WantBody (default set to True)."
IDS_EnableNotification "Method to enable asynchronous notification of arriving messages. It can use the queue's implicit cursor. The user-defined MSMQEvent_Arrived event handler is invoked when a message arrives at the location specified by the optional Cursor parameter (default is first message in the queue), or a timeout occurs. The user-defined MSMQEvent_ArrivedError is invoked if the asynchronous message retrieval results in an error."
IDS_Reset "Method that resets the queue's implicit cursor to the beginning of the queue."
IDS_ReceiveCurrent "Method to synchronously remove the current message from the queue. Retrieves the message at the position pointed to by the implicit cursor. Optional parameters include ReceiveTimeout (default set to INFINITE) and Transaction (default set to MTS Transaction)."
IDS_PeekNext "Method to synchronously peek at the next message in the queue. When called, the implicit cursor is first advanced and then the message is returned. Optional parameters include ReceiveTimeout (default set to INFINITE) and Transaction (default set to MTS Transaction)."
IDS_PeekCurrent "Method to synchronously peek at the current message in queue (message pointed at by the implicit cursor). The implicit cursor is not advanced. Optional parameters include ReceiveTimeout (default set to INFINITE) and Transaction (default set to MTS Transaction)."
IDS_guidQueue "Property indicating the identifier of the public queue."
IDS_guidServiceType "Property identifying the type of service provided by the queue."
IDS_MSMQQueueInfo_strLabel "Property indicating the label of the queue."
IDS_strPathName "Property indicating pathname (physical location) of the queue."
IDS_strFormatName "Property that identifies the queue. The format name of a queue is generated by MSMQ when the queue is created, or generated later by the application."
IDS_isTransactional "Property indicating whether the queue is transactional or non-transactional. If the queue is transactional, all messages sent to the queue must be part of a transaction."
END
STRINGTABLE DISCARDABLE
BEGIN
IDS_MSMQQueueInfo_lPrivLevel
"Property that specifies the privacy level that is required by the queue. The privacy level determines how the queue handles private (encrypted) messages. Possible values are defined by the MQPRIVLEVEL enumeration."
IDS_MSMQQueueInfo_lJournal
"Property that specifies if the messages retrieved from the queue are copied to the queue's journal queue. Possible values are defined by the MQJOURNAL enumeration."
IDS_lQuota "Property that specifies the maximum size (in kilobytes) of the queue."
IDS_lBasePriority "Property that specifies the base priority for all messages sent to a public queue. The queue's base priority has no effect on the order of the messages in the queue, or how messages are read from the queue."
IDS_dateCreateTime "Property that indicates the time and date when the queue was created. Type is Variant Date."
IDS_dateModifyTime "Property that indicates the time and date when the queue's properties were last modified. Type is Variant Date."
IDS_lAuthenticate "Property that specifies whether or not the queue only accepts authenticated messages. If the authentication level of the message does not match the authentication level of the queue, the message is rejected by the queue. Possible values are defined by the MQAUTHENTICATE enumeration."
IDS_lJournalQuota "Property that specifies the maximum size (in kilobytes) of the journal queue."
IDS_Create "Method that creates a new queue. The PathName property is required to create a queue. The FormatName property is updated when the queue is created. Optional parameters include IsWorldReadable (default set to False) and IsTransactional (default set to False)."
IDS_Delete "Method used to delete queue. The PathName propety must be specified to delete a queue."
IDS_Open "Method used to open a queue. The PathName property must be specified to open a queue. Parameters include Access (send, peek, or receive) and ShareMode (exclusive or all)."
IDS_Refresh "Method used to refresh the properties of a public queue from the MSMQ information store."
IDS_Update "Method used to update the MSMQ information store with the public queue's current properties."
IDS_MSMQQueueInfos_Reset
"Method used to reset the implicit cursor to the start of a collection of queues produced by MSMQQuery.LookupQueue."
IDS_MSMQQueueInfos_Next "Method used to advance the implicit cursor to the next element of a collection of queues produced by MSMQQuery.LookupQueue."
IDS_lTransaction "Property that indicates the underlying ""magic cookie"" used by a transaction dispenser. "
END
STRINGTABLE DISCARDABLE
BEGIN
IDS_Commit "Method used to commit an MSMQ transaction."
IDS_Abort "Method used to abort an MSMQ transaction."
IDS_BeginTransaction "Method used to obtain a new transaction from a transaction dispenser."
IDS_StrMachineIdOfMachineName
"Global function used to map a machine pathname to a unique identifier. For example, this identifier can be used to construct a format name for a computer so that its journal queue can be opened."
IDS_Arrived "User-defined method invoked when a message arrives at a queue."
IDS_ArrivedError "User-defined method invoked when an error is returned while reading messages asynchronously."
IDS_IsWorldReadable "Property that indicates who can read messages in the queue. If False, then the queue has the default MSMQ security: all users can send messages to the queue but only the owner of the queue can read messages from it. Otherwise all users can read its messages."
IDS_MQCALG "Enumerates various hashing and encryption algorithms."
END
#endif // MQOAHELP
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -