Share via


MSMQQueue.Access (Compact 2013)

3/26/2014

This read-only property provides the access rights of the queue.

Syntax

HRESULT get_Access( 
  long* plAccess 
);

Parameters

  • plAccess
    Access rights of the queue. The following table shows the possible values.

    Value

    Description

    MQ_SEND_ACCESS

    Messages can only be sent to the queue.

    MQ_PEEK_ACCESS

    Messages can only be looked at. They cannot be removed from the queue.

    MQ_RECEIVE_ACCESS

    Messages can be taken out of the queue or peeked at.

Return Value

The following table describes the common return values.

Value

Description

S_OK

Success

E_INVALIDARG

One or more arguments are invalid

E_NOTIMPL

The function contains no implementation

E_OUTOFMEMORY

Out of memory

Remarks

The Access property returns the access rights specified when the queue was last opened, regardless of whether the queue is open or closed.

Link Library: Mqoa.lib.

Requirements

Header

mqoai.h

Library

mqoa.lib

See Also

Reference

MSMQQueue