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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T06:28:32+00:00 2026-05-31T06:28:32+00:00

public string MyMethod(string param1) { var url = string.Format(UrlMask, HttpUtility.UrlEncode(param1), Login, ApiKey); HttpWebRequest request

  • 0
 public string MyMethod(string param1)
     {
       var url = string.Format(UrlMask, HttpUtility.UrlEncode(param1), Login, ApiKey);
       HttpWebRequest request = WebRequest.Create(url) as HttpWebRequest;
       request.BeginGetResponse(result =>
                {
                    var requestInternal = (HttpWebRequest)result.AsyncState;
                    var response = (HttpWebResponse)requestInternal.EndGetResponse(result);

                    using (StreamReader streamReader = new StreamReader(response.GetResponseStream()))
                    {
                        var resultXml = XDocument.Load(response.GetResponseStream());
                        var x = from r in resultXml.Descendants("node")
                                select r.Element("element").Value;

                    }
                }, request);

                return null;
            }

MyMethod should return the string value when a lambda function will be finished. My questions are:

  • how can I know when the lambda function inside
    request.BeginGetResponse will be finished?
  • how MyMethod will be know about it to return value?
  • 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-31T06:28:34+00:00Added an answer on May 31, 2026 at 6:28 am

    To see when the lambda is finished you could use a ManualResetEvent like this:

        public string MyMethod(string param1) 
        {
            const int timeOutInMs = 1000;
    
            using (ManualResetEvent ended = new ManualResetEvent(false))
            {
                var url = string.Format(UrlMask, HttpUtility.UrlEncode(param1), Login, ApiKey);
                HttpWebRequest request = WebRequest.Create(url) as HttpWebRequest;
                request.BeginGetResponse(result =>
                                             {
                                                 var requestInternal = (HttpWebRequest) result.AsyncState;
                                                 var response = (HttpWebResponse) requestInternal.EndGetResponse(result);
                                                 using (
                                                     StreamReader streamReader =
                                                         new StreamReader(response.GetResponseStream()))
                                                 {
                                                     var resultXml = XDocument.Load(response.GetResponseStream());
                                                     var x = from r in resultXml.Descendants("node")
                                                             select r.Element("element").Value;
                                                 }
                                                 ended.Set();
                                             }, request);
    
                if (!ended.WaitHandle.WaitOne(timeOutInMs))
                {
                    throw new TimeoutException("lambda took too long to complete");
                }
            }
            return null; 
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

If I have a method signature like public string myMethod<T>( ... ) How can
If I have a method such as: public void MyMethod(int arg1, string arg2) How
I have this method: public static Expression<Func<MyEntity, bool>> MyMethod(string someId) { return o =>
In my code I have often situations like this: public void MyMethod(string data) {
public DataSet ExampleMethod(int param1, string param2, Hashtable ht) { if(ht==null) { ht = new
I have the following code: public static MyMethod() { ...Do something ProtectedMethod(param1, param2); ...Do
My method looks like: public string DoObjectProperties<T>(T obj, string text) { } Now from
public string[] SearchForMovie(string SearchParameter) { WebClientX.DownloadDataCompleted += new DownloadDataCompletedEventHandler(WebClientX_DownloadDataCompleted); WebClientX.DownloadDataAsync(new Uri( http://www.imdb.com/find?s=all&q=ironman+&x=0&y=0 )); string
public class Address { public string ZipCode {get; set;} } public class Customer {
public class Song { public string Genre { get; protected set; } public string

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.