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 1056695
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T17:45:11+00:00 2026-05-16T17:45:11+00:00

I have a webservice method getContactsAsync. I’ve understood that when it’s completed it’s supposed

  • 0

I have a webservice method getContactsAsync. I’ve understood that when it’s completed it’s supposed to raise an event. How can I (still asynchronously) find out when the method is done and use the result?

public void GetContacts()
{
    webService.getContactsAsync()
}

public void GetContactsCompleted(object sender, getContactsAsyncCompletedEventArgs e)
{
    contacts = e.Result;
}

I don’t get how I’m supposed to use this. The way I can think of is to call GetContacts and then with a while-loop check if contacts != null to know when it has completed. But this will lock up the thread.

Is there some kind of best-practice typical for this situation?
Thanks for reading!

If I’m completely out of it feel free to explain how it actually works 🙂

  • 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-16T17:45:12+00:00Added an answer on May 16, 2026 at 5:45 pm

    Each DoSomethingAsync method has a corresponding DoSomethingCompleted event that is raised when the method finishes. (See Event-based Asynchronous Pattern Overview for more information.) You need to attach your event handler method to the webService.GetContactsCompleted event in order for it to be executed:

    public void GetContacts()
    {
        webService.getContactsCompleted += GetContactsCompleted;
        webService.getContactsAsync();
    }
    
    // NOTE: Should be a private method.
    private void GetContactsCompleted(object sender, getContactsAsyncCompletedEventArgs e)
    { /* ... */ }
    

    (Note that you will need to ensure that the event handler is only attached once, or it will start being invoked multiple times when the method finishes.)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Can I have a webservice method that returns List<List<MyObject>> in .net?
I have a webservice method that reads a photo and returns its byte data.
I have a simple WebService method that returns database results as a DataSet. This
I have an ASP.NET webservice method that returns a generics list (List'<'Construct>) serialized as
I have an error which I can't understand in my webservice method. First, here
I have a webservice with a method that takes a parameter of abstract base
I have a webservice with a method in it. I can call it fine
I have webservice that can return data in multiple formats. For example json and
I have a webservice that calls a method and returns a generic list. The
I have a winforms, and it connecting wit webservice. Webservice has method which create

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.