Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1046915
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T16:13:17+00:00 2026-05-16T16:13:17+00:00

At one point in my code, i subscribe to the following event :- UploadFolderMessageQueue.ReceiveCompleted

  • 0

At one point in my code, i subscribe to the following event :-

UploadFolderMessageQueue.ReceiveCompleted += UploadMSMQReceiveCompleted;

works great and when the Message Queue’s Recieved Completed event fires, my delegate handles it.

Now, I’m wanting to CHECK to see if the event has been subscribed to, before I subscribe to it. I get an compile time error when I do :-

// Compile Time Errors...
if (UploadFolderMessageQueue.ReceiveCompleted == null)
    {
        UploadFolderMessageQueue.ReceiveCompleted += UploadMSMQReceiveCompleted;
        UploadFolderMessageQueue.Formatter = 
            new XmlMessageFormatter(new[] {typeof (string)});
    }

The event
‘System.Messaging.MessageQueue.ReceiveCompleted’
can only appear on the left hand side
of += or -=

I know this is embarrassingly simple .. but I’m stumped 🙁 Any suggestions?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T16:13:17+00:00Added an answer on May 16, 2026 at 4:13 pm

    you cannot do this from subscriber to the event. Only publisher can check if there are any subscribers. You will need to keep track of subscription using some other mechanism in your class like:

    UploadFolderMessageQueue.ReceiveCompleted += UploadMSMQReceiveCompleted;
    bool handlerAttached=true;
    

    then you can use this:

    if(handlerAttached)
    {
        //DO YOUR STUFF
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

If some one can point me in the right direction for this code for
Boy, this one is really weird. I expect the following code to print 1990,
The following code reads a text file one character at the time and print
Can any one point me to code where users can change their own passwords
I'm writing a template class and at one point in my code would like
RDC70 is the offset parent of RP70. At one point in the code, however,
I use below code for move a NSButton with animation from one point to
I am running an elevated UAC app. At one point in code, I want
I was reading through this tutorial , and at one point in the code,
Can any one point me to a small code for testing a microphone which

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.