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

  • Home
  • SEARCH
  • 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 8098391
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T22:04:04+00:00 2026-06-05T22:04:04+00:00

I have a method called Get and a call back method called X written

  • 0

I have a method called Get and a call back method called X written in C# .I Have to return the _name from the Get method.But it is only possible to get the Actual value of the _name after the callback is finished.So i have to stop at the point of * until call back is finished. After that only i can return the _name .So i have to find whether the call back is finished or not.

How do i achieve a solution for above scenario? Can any one please suggest a solution for this

My methods are something like this

string _name ;

public string Get()
{
     //Some Statements
     //Asynchronous call to a method and its call back method is X


     *Want to stop here until the Call back is finished

     return _name ;
}

private void X (IAsyncResult iAsyncResult)
{
     //Call Endinvoke and get the result
     //assign the final result to global variable _name 
}
  • 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-06-05T22:04:05+00:00Added an answer on June 5, 2026 at 10:04 pm

    Use a ManualResetEvent to signal completion.

       string _name;
       ManualResetEvent _completed = new ManualResetEvent();
    
       public string Get()
       {
         //Some Statements
         _completed.Reset();
         //Asynchronous call to a method and its call back method is X
    
    
         //*Want to stop here until the Call back is finished
         _completed.WaitOne();
    
         return _name ;
       }
    
       private void X (IAsyncResult iAsyncResult)
       {
         //Call Endinvoke and get the result
         //assign the final result to global variable _name 
         _completed.Set();
       }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this method, that will be called against from a WCF Client, but
OK, so I have a broadcast receiver get called and in the onReceive() method
I have a form validation method that's called on submit. It executes a get
I have a class called Property which has nothing but get -methods. All the
I have a method called ReadTill that has the same body of code but
I want to have a method called when the user clicks the back button
I have a method that I call to make web service requests using GET.
i have a method in my back end that i would like to call
i have the following code and the call back function is not being called
I have a method called setSound() which is setting up a queue and adding

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.