HTTP 要求の応答ヘッダーと本文を指定します。
プロパティ・タイプ
例
次の例は応答本文を文字列として読み込みます。
Define_Com Class(#XPRIM_HttpRequest) Name(#Request)
#Request.DoGet Url('http://...')
#TEXT := #Request.Response.AsString
The following example reads the X-TIMESTAMP header in the response sent by the server:
Define_Com Class(#XPRIM_HttpRequest) Name(#Request)
#Request.DoGet Url('http://...')
#TIMESTAMP := #Request.Response.GetHeaderValue('X-TIMESTAMP')