次のコード:
WebRequest request = WebRequest.Create("http://localhost/sandbox/htmlpage1.htm");
WebResponse response = request.GetResponse();
string url = ((HttpWebResponse)response).ResponseUri.ToString();
別のページ (otherpage.htm?qs=data) にリダイレクトする htmlpage1.html を要求しています。htmlpage1.htm がプログラムでリダイレクトする「他のページ」からクエリ文字列を取得するにはどうすればよいですか。これは、winforms アプリからの LinkedIn OAuth2 ルーチン用です。htmlpage1.htm ではなく otherpage.htm のクエリ文字列を取得するには、url 変数が必要です。どんな助けでも大歓迎です。