Click here to Skip to main content
15,884,472 members
Posted
Comments
Wendelius 29-Dec-12 17:25pm    
Instead of posting a new question, you can modify the original using the "Improve question" link.

1 solution

try this:
C#
WebClient client = new WebClient();
        client.OpenReadCompleted += new OpenReadCompletedEventHandler(client_OpenReadCompleted);
        Uri url = new Uri("http://www.namaz.web.tr/namazVakitleriApi.php?ilListesi=1", UriKind.Absolute);
        client.OpenReadAsync(url);



C#
public void client_OpenReadCompleted(object sender, OpenReadCompletedEventArgs e)
{
    try
    {
        var xml = XDocument.Load(e.Result);
        
        var results = from row in xml.Element("sehirListesi").Elements().Where( element.Contains("A") { return (element.Name.LocalName == "Result"); } )
                      select row;

        // now I loop all rows and print the title; of course you can
        // do other stuff here or combine some data processing with the LINQ above
        // - this is up to you
        foreach (var result in results)
        {
                Debug.WriteLine(result.Value.Value);
        }
    }
    catch (Exception c)
    {
        MessageBox.Show(c.Message);
    }
}
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900