3.10.4.1.4 Label (Opnum 10)

The Label method is received by the server in an RPC_REQUEST packet. In response, the server returns the label of the referenced queue.

 [propget] HRESULT Label(
   [out, retval] BSTR* pbstrLabel
 );

pbstrLabel: A pointer to a BSTR that specifies the queue label.

Return Values: The method MUST return S_OK (0x00000000) on success or an implementation-specific error HRESULT on failure.

When processing this call, the server MUST abide by the following contract:

  • If IsRefreshed is FALSE call Refresh (section 3.10.4.1.29).

    • If Refresh returns a value other than S_OK (0x00000000), return the HRESULT returned by Refresh and take no further action.

  • Set the pbstrLabel output parameter to the value of refQueue.Label.

  • Return S_OK (0x00000000), and take no further action.