ChatPlexSDK-BS 1.0.1-v6.2.0
C++ ChatPlex BeatSaber SDK
Loading...
Searching...
No Matches
WebContent.hpp
1#pragma once
2
3#include "../Utils/Il2cpp.hpp"
4#include "../Utils/MonoPtr.hpp"
5
6#include <string>
7#include <stdint.h>
8
9namespace CP_SDK::Network {
10
11 namespace _v
12 {
13 using namespace CP_SDK::Utils;
14 }
15
18 {
19 CP_SDK_NO_COPYMOVE_CTORS(WebContent);
20 CP_SDK_PRIV_TAG();
21
22 public:
26 std::u16string Type;
27
28 public:
29 using Ptr = std::shared_ptr<WebContent>;
30
34 WebContent(CP_SDK_PRIV_TAG_ARG(), ::Array<uint8_t>* p_Bytes, std::u16string_view p_Type);
37
38 public:
41 static Ptr FromJson(std::u16string_view p_Content);
42
43 };
44
45}
static Ptr FromJson(std::u16string_view p_Content)
Constructor from Json.
std::u16string Type
Content type.
WebContent(CP_SDK_PRIV_TAG_ARG(), ::Array< uint8_t > *p_Bytes, std::u16string_view p_Type)
Constructor.
_v::MonoPtr<::Array< uint8_t > > Bytes
Content.
Network and HTTP utilities.
Various platform utils like Delegate/Action/Function/Event system.
Definition Delegate.hpp:8