|
分類:[VB.NET/VB2005 以降]
【開発環境】 Microsoft Visual Studio Community 2022 (64 ビット) Visual Basic ツール 4.7.0-3 .NET 7.0
下記のjavascriptプログラムをVB.NETに移植したいのですが、 XMLHttpRequestオブジェクトに該当するVB.NETのオブジェクトがわからず困っています。 申し訳ありませんがアドバイスをお願い致します。
【Javascriptプログラム】 body = { // JSON形式データ }; var xmlHttp = new XMLHttpRequest(); xmlHttp.open('POST','https://適当なURL'); // HTTP リクエストヘッダーに設定 // API トークン xmlHttp.setRequestHeader('API-Token', <Base64 エンコード値>); // コンテンツタイプ xmlHttp.setRequestHeader('Content-Type', 'application/json'); xmlHttp.onload = function() { if (xmlHttp.status === 200) { // 200 OK 時の処理内容 } else { // エラー時の処理内容 } }; xmlHttp.send(JSON.stringify(body));
|