Skip to content

Latest commit

 

History

History
41 lines (27 loc) · 1.04 KB

File metadata and controls

41 lines (27 loc) · 1.04 KB
author ms.author ms.service title description
jakeshirley
jashir
minecraft-bedrock-edition
minecraft/server-net.HttpResponse Class
Contents of the @minecraft/server-net.HttpResponse class.

HttpResponse Class

Main object that contains result information from a request.

Properties

body

read-only body: string;

Body content of the HTTP response.

Type: string

headers

read-only headers: HttpHeader[];

A collection of HTTP response headers returned from the request.

Type: HttpHeader[]

request

read-only request: HttpRequest;

Information that was used to formulate the HTTP response that this object represents.

Type: HttpRequest

status

read-only status: number;

HTTP response code for the request. For example, 404 represents resource not found, and 500 represents an internal server error.

Type: number