Queue.QueueName
Queue
See also
Contains a name of the queue.
[C++]
void setQueueName(char* Value);
char* getQueueName();
[Pascal]
property QueueName : String;
[VB6]
Property QueueName As String
[ActiveX]
HRESULT _stdcall QueueName([in] BSTR Value );
HRESULT _stdcall QueueName([out, retval] BSTR * Value );
[C#]
public string QueueName;
[VB.NET]
Public Property QueueName As String
[Java]
public void setQueueName(String value);
public String getQueueName();
[Java ME]
public void setQueueName(String name);
public String getQueueName();
[Palm]
void setQueueName(char* Value);
char* getQueueName(void);
[DLL]
void __stdcall MCQueueSetQueueName(HMCQueue h, char* value);
char* __stdcall MCQueueGetQueueName(HMCQueue h);
- h - handle to the object that was returned by Create method
This property is the name of the queue. This name is used by the sender to identify the queue, which is to receive the message. See more about the name of the queue in discussing Addressing topics.
Even if there is only one queue associated with the messenger, it must have a name.
|