ArcGISWindowsPhoneSDK.GeoRSS.LoadRSS C# (CSharp) Method

LoadRSS() protected method

protected LoadRSS ( string uri ) : void
uri string
return void
        protected void LoadRSS(string uri)
        {
            WebClient wc = new WebClient();
            wc.OpenReadCompleted += wc_OpenReadCompleted;
            Uri feedUri = new Uri(uri, UriKind.Absolute);
            wc.OpenReadAsync(feedUri);
        }