MessageQueue.CanWrite Property
Gets a value that indicates whether the MessageQueue can be written to.
Assembly: System.Messaging (in System.Messaging.dll)
[MessagingDescriptionAttribute("MQ_CanWrite")] [BrowsableAttribute(false)] public bool CanWrite { get; }
Property Value
Type: System.Booleantrue if the MessageQueue exists and the application can write to it; otherwise, false.
CanWrite indicates whether the application is able to send messages to the queue. If CanWrite is true, the MessageQueue can send messages to the queue. Otherwise, it cannot.
CanWrite is false if a queue is already open with exclusive write access (or if it's open with non-exclusive access and this MessageQueue requests exclusive access), or if the application does not have sufficient rights to access it. If your application tries to write to a queue when CanWrite is false, access is denied.
The following table shows whether this property is available in various Workgroup modes.
Workgroup mode | Available |
|---|---|
Local computer | Yes |
Local computer and direct format name | Yes |
Remote computer | No |
Remote computer and direct format name | Yes |
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.