Main Content

matlab.net.http.RequestMethod クラス

名前空間: matlab.net.http

説明

RequestMethod 列挙型クラスは要求メソッドの識別子を提供します。要求メッセージの Method プロパティにこれらの値を使用します。サポートされているメソッドは、2017 年 4 月 14 日以降の IANA Hypertext Transfer Protocol (HTTP) Method Registry にリストされています。

RequestMethod のすべてのメンバーのリストを表示するには、次を入力します。

enumeration matlab.net.http.RequestMethod

すべて折りたたむ

r = matlab.net.http.RequestMessage;
uri = 'https://www.mathworks.com';
r = complete(r,uri);
reqmethod = r.Method
reqmethod = 
  RequestMethod enumeration

    GET

バージョン履歴

R2016b で導入