LeviLamina
Loading...
Searching...
No Matches
msg_body_type.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace xbox::httpclient {
6
7enum class msg_body_type : int {
8 NoBody = 0,
9 ContentLengthChunked = 1,
10 TransferEncodingChunked = 2,
11};
12
13}