3.10.4.1.6 PathName (Opnum 12)

The PathName method is received by the server in an RPC_REQUEST packet. In response, the server returns the path name of the referenced queue.

 [propget] HRESULT PathName(
   [out, retval] BSTR* pbstrPathName
 );

pbstrPathName: A pointer to BSTR that specifies the path name of the referenced queue.

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 pbstrPathName output parameter to the value of refQueue.PathName.

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