MessageQueueException Class
The exception that is thrown if a Microsoft Message Queuing internal error occurs.
Assembly: System.Messaging (in System.Messaging.dll)
Exceptions associated with the MessageQueueException class are generated by internal errors within Message Queuing that should be dealt with through your code.
Every exception consists of an error code and a text string that describes the source of the error. See the MessageQueueErrorCode class for a list of these error codes and their descriptions.
Imports System Imports System.Messaging Public Class MyNewQueue ' Provides an entry point into the application. ' ' This example verifies existence and attempts to ' delete a queue. Public Shared Sub Main() ' Determine whether the queue exists. If MessageQueue.Exists(".\myQueue") Then Try ' Delete the queue. MessageQueue.Delete(".\myQueue") Catch e As MessageQueueException If e.MessageQueueErrorCode = _ MessageQueueErrorCode.AccessDenied Then Console.WriteLine("Access is denied. " _ + "Queue might be a system queue.") End If ' Handle other sources of exceptions as necessary. End Try End If Return End Sub 'Main End Class 'MyNewQueue
#using <mscorlib.dll>
#using <system.dll>
#using <system.messaging.dll>
using namespace System;
using namespace System::Messaging;
int main()
{
// Determine whether the queue exists.
if (MessageQueue::Exists(S".\\myQueue"))
{
try
{
// Delete the queue.
MessageQueue::Delete(S".\\myQueue");
}
catch (MessageQueueException* e)
{
if (e->MessageQueueErrorCode ==
MessageQueueErrorCode::AccessDenied)
{
Console::WriteLine(S"Access is denied. Queue might be a system queue.");
}
// Handle other sources of MessageQueueException.
}
}
return 0;
}
System.Exception
System.SystemException
System.Runtime.InteropServices.ExternalException
System.Messaging.MessageQueueException
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98, Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.