Function HTTPClient.requestRaw

Sends a raw request to the connected host. The URL parameter is just the part after the host, so for http://somehost.com/index.php, it is index.php. Headers are HTTP request headers. For available HTTP methods, see method. Sends the body data raw, as a byte array and does not encode it in any way.

godot.core.defs.GodotError requestRaw (
  const(long) method,
  const(String) url,
  const(PoolArray!(godot.core.string.String)) headers,
  const(PoolArray!(ubyte)) _body
) nothrow @nogc;