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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T20:49:36+00:00 2026-05-24T20:49:36+00:00

I have a xml string that return from Post method: private static void GetResponseCallback(IAsyncResult

  • 0

I have a xml string that return from Post method:

private static void GetResponseCallback(IAsyncResult asynchronousResult)
{
    HttpWebRequest request = (HttpWebRequest)asynchronousResult.AsyncState;

    // End the operation
    HttpWebResponse response = (HttpWebResponse)request.EndGetResponse(asynchronousResult);
    HttpStatusCode rcode = response.StatusCode;

    var stream = new GZipInputStream(response.GetResponseStream());
    using (StreamReader reader = new StreamReader(stream))
    {
        responseString = reader.ReadToEnd();                
    }          

    response.Close();
}

The responseString is the string I want to parse, using parseXmlString class below. However I can’t call the method parseXmlString directly because of the static. How can I pass the responseString to the parseXmlString method to have them parse out and bind to the listBox. Or anyway to have the same result would be great.

void parseXmlString()
{
    byte[] byteArray = Encoding.UTF8.GetBytes(responseString);
    MemoryStream str = new MemoryStream(byteArray);
    str.Position = 0;

    XDocument xdoc = XDocument.Load(str);

    var data = from query in xdoc.Descendants("tracks").Elements("item")
               select new searchResult
               {
                   artist = (string)query.Element("artist"),
                   album = (string)query.Element("album"),
                   track = (string)query.Element("track"),
                   //   artistA = (string)query.Element("artists").Element("artist"),
               };
    //  ListBox lb = new ListBox();

    listBox1.ItemsSource = data;

    var data1 = from query in xdoc.Descendants("artists").Elements("item")
                select new searchResult
                {
                    artistA = (string)query.Element("artist"),
                };
    listBox2.ItemsSource = data1;
}
  • 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-24T20:49:37+00:00Added an answer on May 24, 2026 at 8:49 pm

    Your approach is inversed logic. You know that you can have return values on methods, right?-)

    What you need to do is let your ParseXmlString method take the responseString as a parameter, and let it return the created IEnumerable, like this:

    private IEnumerable<SearchResult> ParseXmlString(responseString)
    {
        XDocument xdoc = XDocument.Load(responseString);
    
        var data =
            from query in xdoc.Descendants("tracks").Elements("item")
            select new SearchResult
            {
               Artist = (string)query.Element("artist"),
               Album = (string)query.Element("album"),
               Track = (string)query.Element("track"),
            };
    
        return
            from query in xdoc.Descendants("artists").Elements("item")
            select new SearchResult
            {
               ArtistA = (string)query.Element("artist"),
            };
    }
    

    And change your async code handling, to perform a callback to your UI thread, when it’s done reading out the responseString.
    Then, on your UI thread, you would do:

    // This being your method to get the async response
    GetResponseAsync(..., responseString =>
    {
        var searchResults = ParseXmlString(responseString);
        listBox2.ItemsSource = searchResults;
    })
    

    You can see this answer, if you need some basic understanding of callbacks: Callbacks in C#

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

Sidebar

Related Questions

I have an object that can build itself from an XML string, and write
I have a helper class pulling a string from an XML file. That string
I have a string that represents a non indented XML that I would like
I have a function that outputs an XML string: <expensesAC> <cashflow> <month>6</month> <cash>300</cash> <projected>null</projected>
I have an xml document object that I need to convert into a string.
I have mysql table that has a column that stores xml as a string.
I have the following XML Parsing code in my application: public static XElement Parse(string
I have an XML string that looks like this: <Attributes> <ProductAttribute id=1> <ProductAttributeValue> <Value>a</Value>
I read some properties from an xml file, amongst which is a string that
I have a class with a member Address that I read from an XML

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.