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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T03:29:56+00:00 2026-05-21T03:29:56+00:00

In Silverlight I want to be able to get the output from a Helper

  • 0

In Silverlight I want to be able to get the output from a Helper class like this:

    public MainPage()
    {
        InitializeComponent();

        String ouput;
        Helper helper = new Helper(url);

        Helper.invoke(output);

    }

I can’t see how to do that since in Helper Class I am obliged to do an asynchronous call:

    private String webserviceUrl;
    private XDocument xdoc = new XDocument();

    public Helper(String webserviceUrl)
    {
        this.webserviceUrl = webserviceUrl;
    }

    public void invoke(ref String output)
    {

        HttpWebRequest httpWebRequest = (HttpWebRequest)WebRequest.Create(this.webserviceUrl);
        try
        {
            HttpWebResponse httpWebResponse = (HttpWebResponse)httpWebRequest.BeginGetResponse(new AsyncCallback(HandlerWebResponse), httpWebResponse);

        }
        catch
        {

        }

  }

    private void HandlerWebResponse(IAsyncResult asynchronousResult)
    {
        HttpWebRequest request = (HttpWebRequest)asynchronousResult.AsyncState;
        HttpWebResponse response = (HttpWebResponse)request.EndGetResponse(asynchronousResult);
        using (StreamReader streamReader1 = new StreamReader(response.GetResponseStream()))
        {
            string resultString = streamReader1.ReadToEnd();

        }
    }
  • 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-21T03:29:56+00:00Added an answer on May 21, 2026 at 3:29 am

    Create an event to notify that the service has been successfully consumed. In the event parameters you can pass the result of the invoked web services.

    public event Action<string> ResponseResult;
    

    You can then invoke this event in your web response handler:

    private void HandlerWebResponse(IAsyncResult asynchronousResult)
    {
        HttpWebRequest request = (HttpWebRequest)asynchronousResult.AsyncState;
        HttpWebResponse response = (HttpWebResponse)request.EndGetResponse(asynchronousResult);
        using (StreamReader streamReader1 = new StreamReader(response.GetResponseStream()))
        {
            string resultString = streamReader1.ReadToEnd();
            if (ResponseResult != null)
                 ResponseResult(resultString);
    
        }
    }
    

    And in your code the initiates the service call you can subscribe to this event to get notified when it has finished:

    Helper helper = new Helper(url);
    public MainPage()
    {
        InitializeComponent();
    
        Helper.ResponseResult += ResponseHandler;
        Helper.invoke(output);
    
    }
    
    public void ResponseHandler(string response)
    {
        // do something with response
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to get the fullname from a file on Silverlight OpenFileDialog, when I
There is this Telerik's RadTreeView (Silverlight Version) control I'd like to extend (inherit from).
in my silverlight application i want to create a style from code behind and
I want to create a Silverlight app to extract and manipulate data from an
I'm working on building a Silverlight application whereas we want to be able to
I am calling an asynchronous service from my Silverlight app and I want to
How can I get a perfect isometric perspective in Silverlight ? I want to
I have a Silverlight Class Library that I want to use in both my
I'm writing an OOB app using Silverlight 5 and I want to be able
Is there an equivalent of FrameworkPropertyMetadataOptions in Silverlight 5? I want to be able

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.