コード例 #1
0
        private async void WEBpreprocess()
        {
            try
            {
                PRGRS.ProgressStart();
                HYPERsource.NavigateUri = new Uri("https://stackoverflow.com/questions/" + info.ID);
                Parameters result = await WebConnection.ConnctWithGet("https://stackoverflow.com/questions/" + info.ID);

                if (!result.name.Equals("200"))
                {
                    return;
                }
                html = HandleHTML(result.value);
                WEBpost.NavigateToString(html);
                PRGRS.ProgressEnd();
            }
            catch
            {
                return;
            }
            finally
            {
            }
        }